@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');

:root {
    --primary-color: rgb(65, 40, 16) !important;
    --text-color: #333;
    --bg-color: #f6f6f6;
    --border-color: #e5e5e5;
    --light-color: #e5e5e5;
    --border-radius: 8px;
    --sideBar-width: 270px;
    font-size: 16px;
}
.btn-link{
    text-decoration: unset;
    color: #000;
    font-weight: 900 !important;
    font-size: 15px !important;
}
body {
    font-family: "Open Sans", sans-serif; font-size: 14px;
}
html[dir=rtl] body{
    font-family: "Cairo", sans-serif;
}
input {
    box-shadow: none !important;
    -moz-appearance: textfield;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input::-webkit-search-decoration, input::-webkit-search-cancel-button, input::-webkit-search-results-button, input::-webkit-search-results-decoration {
    display: none;
}

.overflow {
    overflow: hidden !important;
}

* {
    outline: none !important;
}

.container {
    --bs-gutter-x: 30px;
}
@media (min-width: 1500px) {
    .container {
        max-width: 1120px;
    }
}

.container-fluid {
    --bs-gutter-x: 30px;
}

select {
    background-image: url(../images/arrow.svg);
    background-repeat: no-repeat;
    background-size: 16px 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
html[dir=rtl] select {
    background-position: left 12px center;
}
html[dir=ltr] select {
    background-position: right 12px center;
}

body {
    position: relative;
    background-color: var(--bg-color);
    color: var(--text-color);
    --bs-body-color: $text;
}
body ::-webkit-scrollbar {
    background-color: var(--bg-color);
    width: 7px;
    height: 5px;
}
body ::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
}

html {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--bg-color);
}

.btn {
    outline: none !important;
    box-shadow: none !important;
    height: 38px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: var(--border-radius);
    font-size: 13px;
    font-weight: 500;

}
.btn.btn-primary {
    background-color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}
.btn.btn-primary:focus {
    background-color: var(--primary-color);
}
.btn.btn-primary:hover {
    background-color: var(--primary-color);
    opacity: 0.8;
}
.btn.btn-defult {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}
.btn.btn-icon {
    min-width: 45px;
    width: 45px;
}

.search-line {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
}
@media (max-width: 991px) {
    .search-line {
        flex-direction: column;
        justify-content: center;
    }
}

.search-form {
    width: 100%;
    position: relative;
}
@media (max-width: 991px) {
    .search-form {
        margin-bottom: 15px;
    }
}

.search-input {
    width: 100%;
    height: 45px;
    border-radius: var(--border-radius);
    font-size: 15px;
    font-weight: 500;
    border: 2px solid var(--border-color);
    padding: 0 23px;
    color: var(--text-color);
    -webkit-padding-start: 40px;
    padding-inline-start: 40px;
    transition: all 0.3s ease-in-out;
}
.search-input::-moz-placeholder {
    color: var(--text-color);
    opacity: 0.7;
    font-size: 15px;
    font-weight: 400;
}
.search-input::placeholder {
    color: var(--text-color);
    opacity: 0.7;
    font-size: 15px;
    font-weight: 400;
}
.search-input:focus {
    border-color: var(--primary-color);
}

.search-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-start: 15px;
    padding: 0;
    background-color: transparent;
    border: none;
    color: var(--text-color);
    transition: all 0.3s ease-in-out;
}
.search-btn:hover {
    color: var(--primary-color);
}

.search-filter {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-end: 15px;
    padding: 0;
    background-color: transparent;
    border: none;
    color: var(--text-color);
    transition: all 0.3s ease-in-out;
}
.search-filter:hover {
    color: var(--primary-color);
}

.listing-tools {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.listing-tool {
    width: 45px;
    height: 45px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-margin-start: 15px;
    margin-inline-start: 15px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 16px;
    border: none;
    transition: all 0.3s ease-in-out;
}
.listing-tool:hover {
    background-color: var(--primary-color);
    opacity: 0.8;
}

.table {
    --bs-table-bg: #fff;
    margin: 0;
    border: 1px solid var(--border-color);
}
.table > :not(caption) > * > * {
    padding: 10px 20px;
}

.table-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.table-action {
    font-size: 18px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.table-action ~ .table-action {
    -webkit-margin-start: 15px;
    margin-inline-start: 15px;
}
.table-action:hover {
    color: var(--primary-color);
}
.table-action[role=button] {
    color: var(--text-color);
    cursor: not-allowed;
}

.status {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 120px;
    border-radius: 5px;
    font-weight: 500;
    color: #fff;
}
.status.active {
    background-color: green;
}
.status.inactive {
    background-color: #333;
}

table.table.dataTable {
    margin: 0 !important;
    border: none;
}
table.table.dataTable > thead > tr > th {
    text-align: start;
    -webkit-padding-start: 10px;
    padding-inline-start: 10px;
    -webkit-padding-end: 10px;
    padding-inline-end: 10px;
    border: none;
    white-space: nowrap;
}
table.table.dataTable > thead > tr > th:before {
    display: none;
}
table.table.dataTable > thead > tr > th:after {
    position: relative;
    inset: unset;
    display: inline-flex;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--text-color);
    opacity: 0.5;
    -webkit-margin-start: 5px;
    margin-inline-start: 5px;
    content: "";
}
table.table.dataTable > thead > tr > th.sorting_asc::after {
    content: "\f078";
}
table.table.dataTable > thead > tr > th.sorting_desc::after {
    content: "\f077";
}
table.table.dataTable tbody td {
    border: none;
}
.cke_editable p strong{
    margin: 0;
    padding: 0;
}
.dataTables_wrapper .top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
}
@media (max-width: 991px) {
    .dataTables_wrapper .top {
        flex-direction: column;
        justify-content: center;
    }
}
.dataTables_wrapper .dataTables_filter {
    width: 100%;
}
@media (max-width: 991px) {
    .dataTables_wrapper .dataTables_filter {
        margin-bottom: 15px;
    }
}
.dataTables_wrapper .dataTables_filter label {
    width: 100%;
    position: relative;
}
.dataTables_wrapper .dataTables_filter label::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f002";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-start: 15px;
    color: var(--text-color);
}
.dataTables_wrapper .dataTables_filter .form-control {
    width: 100%;
    margin: 0;
    padding: 0 23px;
    -webkit-padding-start: 40px;
    padding-inline-start: 40px;
}
.dataTables_wrapper .dt-buttons {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
@media (max-width: 991px) {
    .dataTables_wrapper .dt-buttons {
        justify-content: center;
    }
}
.dataTables_wrapper .dt-buttons .btn {
    width: 45px;
    height: 45px;
    flex: unset;
    border-radius: var(--border-radius) !important;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-margin-start: 15px;
    margin-inline-start: 15px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 16px;
    border: none;
    transition: all 0.3s ease-in-out;
}
.dataTables_wrapper .dt-buttons .btn:hover {
    background-color: var(--primary-color);
    opacity: 0.8;
}
@media (max-width: 991px) {
    .dataTables_wrapper .dt-buttons .btn:first-of-type {
        margin: 0;
    }
}
.dataTables_wrapper .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}
@media (max-width: 991px) {
    .dataTables_wrapper .bottom {
        flex-wrap: wrap;
        margin-top: 30px;
    }
}
@media (max-width: 1199px) {
    .dataTables_wrapper .bottom div.dataTables_paginate {
        order: 3;
        width: 100%;
        margin-top: 20px;
    }
}
.dataTables_wrapper .bottom div.dataTables_paginate > ul.pagination {
    background-color: transparent;
    margin: 0;
}
@media (max-width: 991px) {
    .dataTables_wrapper .bottom div.dataTables_paginate > ul.pagination {
        display: flex;
        justify-content: center;
        width: 100%;
    }
}
.dataTables_wrapper .bottom div.dataTables_paginate > ul.pagination > .page-item {
    margin: 0 2px;
}
.dataTables_wrapper .bottom div.dataTables_paginate > ul.pagination > .page-item > .page-link {
    background-color: transparent;
    border: none;
    font-size: 16px;
    color: var(--text-color);
    font-weight: 400;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    box-shadow: none;
    transition: all 0.3s ease-in-out;
}
.dataTables_wrapper .bottom div.dataTables_paginate > ul.pagination > .page-item > .page-link:hover {
    color: var(--primary-color);
}
.dataTables_wrapper .bottom div.dataTables_paginate > ul.pagination > .page-item.disabled {
    opacity: 0.4;
}
.dataTables_wrapper .bottom div.dataTables_paginate > ul.pagination > .page-item.active > .page-link {
    background-color: var(--primary-color);
    color: #fff;
}
.dataTables_wrapper .bottom div.dataTables_info {
    padding: 0;
}
@media (max-width: 991px) {
    .dataTables_wrapper .bottom div.dataTables_info {
        order: 1;
    }
}
@media (max-width: 991px) {
    .dataTables_wrapper .bottom div.dataTables_length {
        order: 2;
    }
}
.dataTables_wrapper .bottom div.dataTables_length > label {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.dataTables_wrapper .bottom div.dataTables_length > label > label {
    font-weight: 400;
    margin: 0;
    padding: 0;
    -webkit-margin-end: 10px;
    margin-inline-end: 10px;
}
@media (max-width: 991px) {
    .dataTables_wrapper .bottom div.dataTables_length > label > label {
        display: none;
    }
}
.dataTables_wrapper .bottom div.dataTables_length > label > select {
    width: 70px;
    height: 40px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 0 10px;
    background-color: #fff;
    box-shadow: none;
}
html[dir=rtl] .dataTables_wrapper .bottom div.dataTables_length > label > select {
    background-position: left 10px center;
}
html[dir=ltr] .dataTables_wrapper .bottom div.dataTables_length > label > select {
    background-position: right 10px center;
}

.pagination {
    background-color: transparent;
    margin: 0;
}
@media (max-width: 1199px) {
    .pagination {
        order: 3;
        width: 100%;
        margin-top: 20px;
        display: flex;
        justify-content: center;
    }
}
.pagination > .page-item > .page-link {
    background-color: transparent;
    border: none;
    font-size: 16px;
    color: var(--text-color);
    font-weight: 400;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    transition: all 0.3s ease-in-out;
}
.pagination > .page-item > .page-link:hover {
    color: var(--primary-color);
}
.pagination > .page-item > .page-link.active {
    background-color: var(--primary-color);
    color: #fff;
}

.modal-backdrop {
    --bs-backdrop-zindex: 999998;
}

.modal {
    --bs-modal-zindex: 999999;
}

.modal-content {
    border: none;
    border-radius: var(--border-radius);
}

.modal-header {
    text-align: center;
    border: none;
    justify-content: center;
}
.modal-header .modal-title {
    text-align: center;
    font-size: 20px;
    margin: 0;
    font-weight: 700;
}

.modal-body {
    border: none;
    padding-top: 0;
}
.modal-body .modal-img {
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-body .modal-paragraph {
    text-align: center;
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
}
.modal-body .form-group {
    padding-top: 40px;
}

.modal-footer {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-footer .btn {
    width: 230px;
    max-width: calc(50% - 10px);
    margin: 0 5px;
}

.form-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 20px;
}

.advanced-search .form-grid {
    grid-template-columns: 1fr 1fr;
}
.advanced-search .form-grid .form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
}
@media (max-width: 991px) {
    .advanced-search .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin: 0 0 15px;
    display: flex;
    /*align-items: flex-start;*/
    justify-content: flex-start;
    flex-direction: column;
    max-width: 100%;
    /*overflow: auto;*/
}
.form-group:has(.form-error) .form-control {
    border-color: #e24a56;
}
.form-group:has(.form-error) .form-label {
    color: #e24a56;
}
.form-group:has(:disabled) {
    opacity: 0.7;
}
.form-group .form-group {
    width: 100%;
}

.form-label {
    font-weight: 700;
    color: var(--text-color);
    font-size: 16px;
}

.form-control {
    width: 100%;
    height: 45px;
    border: 2px solid var(--border-color);
    padding: 0 10px;
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
    border-radius: var(--border-radius);
    box-shadow: none !important;
    transition: all 0.3s ease-in-out;
}
.form-control::-moz-placeholder {
    font-weight: 400;
    color: var(--text-color);
    opacity: 0.5;
}
.form-control::placeholder {
    font-weight: 400;
    color: var(--text-color);
    opacity: 0.5;
}
html[dir=rtl] .form-control::-moz-placeholder {
    text-align: right;
}
html[dir=rtl] .form-control::placeholder {
    text-align: right;
}
html[dir=ltr] .form-control::-moz-placeholder {
    text-align: left;
}
html[dir=ltr] .form-control::placeholder {
    text-align: left;
}
.form-control:is(textarea) {
    padding-top: 10px;
    height: 120px;
    resize: none;
}

.pass-input {
    position: relative;
}
.pass-input .togglePass {
    position: absolute;
    inset-inline-end: 15px;
    transition: all 0.3s ease-in-out;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: var(--text-color);
    padding: 0 5px;
    background-color: transparent;
    border: none;
}
.pass-input .togglePass:hover {
    color: var(--primary-color);
}

.select2-container {
    max-width: 100% !important;
}
.select2-container .select2-selection {
    padding: 9px 18px;
    -webkit-padding-end: 45px;
    padding-inline-end: 45px;
    min-height: 45px;
    border-radius: var(--border-radius);
    border: 2px solid var(--border-color);
    background-image: url(../images/arrow.svg);
    background-repeat: no-repeat;
    background-size: 16px 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
html[dir=rtl] .select2-container .select2-selection {
    background-position: left 23px center;
}
html[dir=ltr] .select2-container .select2-selection {
    background-position: right 23px center;
}
.select2-container .select2-selection .select2-selection__rendered {
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0;
}
.select2-container .select2-selection .select2-selection__choice {
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-padding-start: 10px;
    padding-inline-start: 10px;
    -webkit-padding-end: 40px;
    padding-inline-end: 40px;
    background-color: transparent;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    height: 30px;
    border-radius: 15px;
    border: none;
    position: relative;
    overflow: hidden;
    transform: perspective(1px);
}
.select2-container .select2-selection .select2-selection__choice:after {
    content: "";
    background-color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.select2-container .select2-selection .select2-selection__choice .select2-selection__choice__remove {
    padding: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    color: var(--text-color);
    font-size: 12px;
    transition: all 0.3s ease-in-out;
}
.select2-container .select2-selection .select2-selection__choice .select2-selection__choice__remove:hover {
    background-color: transparent;
    color: #f00;
}
html[dir=rtl] .select2-container .select2-selection .select2-selection__choice .select2-selection__choice__remove {
    left: auto;
    right: auto;
    inset-inline-end: 0px;
}
html[dir=ltr] .select2-container .select2-selection .select2-selection__choice .select2-selection__choice__remove {
    left: auto;
    right: auto;
    inset-inline-end: 0px;
}
.select2-container .select2-selection .select2-selection__choice .select2-selection__choice__remove:after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f00d";
}
.select2-container .select2-selection .select2-selection__choice .select2-selection__choice__remove span {
    display: none;
}
html[dir=rtl] .select2-container .select2-selection .select2-selection__choice {
    margin: 5px;
}
html[dir=ltr] .select2-container .select2-selection .select2-selection__choice {
    margin: 5px;
}
.select2-container .select2-selection .select2-search--inline {
    display: none;
}
.select2-container .select2-dropdown {
    border-radius: var(--border-radius);
    border: 2px solid var(--border-color);
    overflow: hidden;
}
.select2-container .select2-dropdown .select2-results__option--selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.select2-container .select2-dropdown .select2-results__option--selected:after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f00c";
    -webkit-margin-end: 20px;
    margin-inline-end: 20px;
}
.select2-container.select2-container--focus .select2-selection {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
}
.select2-container.select2-container--open.select2-container--above .select2-selection {
    border-radius: var(--border-radius);
}
.select2-container.select2-container--open.select2-container--below .select2-selection {
    border-radius: var(--border-radius);
}
.select2-container.select2-container--open .select2-dropdown.select2-dropdown--above {
    margin-top: -5px;
    border-radius: var(--border-radius);
}
.select2-container.select2-container--open .select2-dropdown.select2-dropdown--below {
    margin-top: 5px;
    border-radius: var(--border-radius);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0 15px;
}
.form-grid .form-group {
    max-width: 100%;
    overflow: unset;

}
@media (max-width: 991px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 767px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}
.form-grid .form-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0 5px;
}
@media (max-width: 991px) {
    .form-grid .form-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 767px) {
    .form-grid .form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}
.form-grid .form-grid .form-control {
    padding: 0 10px;
}
@media (max-width: 767px) {
    .form-grid .form-grid .form-control {
        padding: 0 23px;
    }
}

.form-flex {
    display: flex;
    align-items: flex-start;
    gap: 0 15px;
}
.form-flex .form-group {
    flex: 1;
    width: 100%;
}
@media (max-width: 767px) {
    .form-flex {
        flex-direction: column;
    }

}
.red-star {
    color: red;
}

.form-btns {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
    max-width: 430px;
    -webkit-margin-start: auto;
    margin-inline-start: auto;
}
@media (max-width: 991px) {
    .form-btns {
        gap: 15px;
        max-width: none;
        margin: 30px 0 0;
    }
}
.form-btns .btn {
    width: 200px;
    max-width: calc(50% - 7.5px);
}
.form-btns .btn.btn-icon {
    width: 45px;
}
@media (max-width: 991px) {
    .form-btns .btn {
        width: calc(50% - 7.5px);
    }
    .form-btns .btn:nth-of-type(3) {
        width: 100%;
        max-width: none;
    }
}

.checkbox label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.checkbox .mark {
    height: 20px;
    width: 20px;
    overflow: hidden;
    background-color: #fff;
    border: 2px solid var(--border-color);
    border-radius: calc(var(--border-radius) / 2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
    transition: all 0.3s ease-in-out;
}
.checkbox .mark i {
    transform: scale(0) rotate(360deg);
    transition: all 0.3s ease-in-out;
}
.checkbox .text {
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
    -webkit-margin-start: 7px;
    margin-inline-start: 7px;
}
.checkbox input {
    display: none;
}
.checkbox input:checked ~ .mark {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}
.checkbox input:checked ~ .mark i {
    transform: none;
}

.switch {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.switch .text {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
    margin: 0;
}
.switch .text span {
    display: none;
}
.switch .text span.inactive {
    display: block;
}
.switch .slider {
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.15);
    width: 50px;
    height: 24px;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.switch .slider:before {
    content: "";
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    position: absolute;
    inset-inline-start: 3px;
    top: 2px;
    bottom: 2px;
}
.switch input {
    display: none;
}
.switch input:checked ~ .slider {
    background-color: var(--primary-color);
}
.switch input:checked ~ .slider::before {
    inset-inline-start: calc(100% - 23px);
}
.switch input:checked ~ .text span {
    display: none;
}
.switch input:checked ~ .text span.active {
    display: block;
}

.file-upload {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.file-upload .file-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    -webkit-padding-end: 4px;
    padding-inline-end: 4px;
    height: 30px;
    color: #fff;
    font-size: 14px;
    border-radius: 15px;
    background-color: var(--primary-color);
}
.file-upload .file-preview .del-file {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f00;
    background-color: #ccc;
    padding: 0;
    border: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 14px;
    -webkit-margin-start: 10px;
    margin-inline-start: 10px;
}
.file-upload .file-preview ~ .preview-placeholder {
    display: none;
}
.file-upload input {
    display: none;
}
.file-upload .upload-ico {
    color: var(--text-color);
    font-size: 18px;
}

.date-picker {
    position: relative;
}
.date-picker i {
    position: absolute;
    inset-inline-end: 15px;
    transition: all 0.3s ease-in-out;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: var(--text-color);
    pointer-events: none;
}

.datepicker-dropdown {
    z-index: 99999 !important;
}

.input-number {
    position: relative;
}
.input-number .qty-controls {
    position: absolute;
    top: 4px;
    bottom: 4px;
    inset-inline-end: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}
.input-number .form-control {
    direction: unset;
}
.input-number .qty-control {
    height: 18px;
    width: 18px;
    background-color: #ccc;
    color: var(--text-color);
    padding: 0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}
.input-number .qty-control:hover {
    color: #fff;
    background-color: var(--primary-color);
}
.input-number:hover .qty-controls {
    visibility: visible;
    opacity: 1;
}

.input-note {
    position: relative;
}
.input-note .note {
    position: absolute;
    inset-inline-end: 15px;
    transition: all 0.3s ease-in-out;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--text-color);
    pointer-events: none;
}

div.cke {
    border: none;
}
div.cke .cke_inner .cke_top {
    border: 2px solid var(--border-color);
    border-bottom: none;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    background-color: var(--bg-color);
}
div.cke .cke_inner .cke_contents {
    background-color: #fff;
    border: 2px solid var(--border-color);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}
div.cke .cke_inner .cke_bottom {
    display: none;
    border: 2px solid var(--border-color);
    border-top: none;
    background-color: var(--bg-color);
}
div.cke .cke_inner .cke_bottom .cke_path {
    text-align: left;
    direction: ltr;
    float: unset;
}
div.cke .cke_inner .cke_bottom .cke_resizer {
    display: none;
}

.form-btns ~ .form-grid {
    margin-top: 30px;
}

div.form-control {
    display: flex;
    align-items: center;
}
div.form-control input {
    width: 100%;
    height: 100%;
    border: none !important;
    outline: none !important;
}
div.form-control .tag-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    -webkit-padding-end: 4px;
    padding-inline-end: 4px;
    margin: 0 5px;
    height: 30px;
    color: #fff;
    font-size: 14px;
    border-radius: 15px;
    background-color: var(--primary-color);
}
div.form-control .tag-preview .del-file {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f00;
    background-color: #ccc;
    padding: 0;
    border: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 14px;
    -webkit-margin-start: 10px;
    margin-inline-start: 10px;
}
div.form-control .tag-preview ~ .preview-placeholder {
    display: none;
}

.logo-input {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--border-color);
    height: 150px;
    border-radius: var(--border-radius);
}
.logo-input .logo-icon {
    font-size: 40px;
    color: var(--primary-color);
    border: 2px dashed var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
}
.logo-input input {
    display: none;
}
.logo-input img {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

#calendar.mbsc-calendar {
    color: var(--text-color);
    font-family: "Open Sans", sans-serif;
}
#calendar.mbsc-calendar .mbsc-calendar-wrapper {
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}
#calendar.mbsc-calendar .mbsc-calendar-wrapper .mbsc-calendar-body .mbsc-calendar-week-days > .mbsc-calendar-week-day {
    text-align: center;
}
#calendar.mbsc-calendar .mbsc-calendar-wrapper .mbsc-calendar-body .mbsc-calendar-cell > div:first-of-type {
    display: none;
}
#calendar.mbsc-calendar .mbsc-calendar-wrapper .mbsc-calendar-body .mbsc-calendar-cell.mbsc-selected {
    position: relative;
    transform: perspective(1px);
}
#calendar.mbsc-calendar .mbsc-calendar-wrapper .mbsc-calendar-body .mbsc-calendar-cell.mbsc-selected::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.2;
    z-index: -1;
}
#calendar.mbsc-calendar .mbsc-calendar-wrapper .mbsc-calendar-body .mbsc-calendar-cell.mbsc-selected .mbsc-calendar-cell-inner {
    background-color: transparent;
}
#calendar.mbsc-calendar .mbsc-calendar-wrapper .mbsc-calendar-body .mbsc-calendar-label {
    color: var(--primary-color);
}
#calendar.fc {
    min-height: 100vh;
}
#calendar.fc a {
    text-decoration: none !important;
}
#calendar.fc .fc-toolbar-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
}
#calendar.fc .fc-button {
    outline: none !important;
    box-shadow: none !important;
    height: 35px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 500;
}
#calendar.fc .fc-button.fc-button-primary {
    background-color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}
#calendar.fc .fc-button.fc-button-primary:focus {
    background-color: var(--primary-color);
}
#calendar.fc .fc-button.fc-button-primary:hover {
    background-color: var(--primary-color);
    opacity: 0.8;
}
#calendar.fc .fc-button-group .fc-button {
    /*width: 35px;*/
    padding: 0;
}
#calendar.fc .fc-button-group .fc-button ~ .fc-button {
    -webkit-margin-start: 5px;
    margin-inline-start: 5px;
}
#calendar.fc td,
#calendar.fc th,
#calendar.fc .fc-scrollgrid {
    border-color: var(--border-color);
}
#calendar.fc .fc-col-header-cell .fc-scrollgrid-sync-inner {
    height: 45px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
#calendar.fc .fc-col-header-cell .fc-scrollgrid-sync-inner a {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    padding: 0;
}
@media (max-width: 767px) {
    #calendar.fc .fc-col-header-cell .fc-scrollgrid-sync-inner a {
        font-size: 12px;
    }
}
#calendar.fc .fc-daygrid-day-number {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
}
#calendar.fc .fc-daygrid-day .fc-scrollgrid-sync-inner {
    background-color: #fff;
}
#calendar.fc .fc-daygrid-day.fc-day-today {
    background-color: transparent;
}
#calendar.fc .fc-daygrid-day.fc-day-today .fc-scrollgrid-sync-inner {
    background-color: var(--primary-color);
    opacity: 0.8;
}
#calendar.fc .fc-daygrid-day.fc-day-today .fc-scrollgrid-sync-inner .fc-daygrid-day-number {
    font-weight: 700;
    color: #fff;
}
#calendar.fc .fc-h-event {
    border-color: var(--primary-color);
}
#calendar.fc .fc-h-event .fc-event-main {
    background-color: var(--primary-color);
}
#calendar.fc .fc-daygrid-body,
#calendar.fc .fc-col-header,
#calendar.fc .fc-scrollgrid-sync-table {
    width: 100% !important;
}

header {
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 6px 0 rgba(67, 89, 113, 0.12);
    z-index: 9999;
    position: relative;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 0;
}
.header .logo-cont {
    width: var(--sideBar-width);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
}
@media (max-width: 1199px) {
    .header .logo-cont {
        width: auto;
    }
}
.header .logo {
    display: block;
    width: auto;
    height: 45px;
    -webkit-margin-end: auto;
    margin-inline-end: auto;
}
.header .logo img {
    height: 100%;
}

.header-tools {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

.header-user {
    display: flex;
    align-items: center;
    -webkit-margin-end: auto;
    margin-inline-end: auto;
}
@media (max-width: 1199px) {
    .header-user {
        margin: 0;
    }
}
.header-user .user-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    width: 40px;
    height: 40px;
    color: #fff;
    font-size: 18px;
    border-radius: 50%;
    overflow: hidden;
    -webkit-margin-end: 7px;
    margin-inline-end: 7px;
}
.header-user .user-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.header-user .user-name {
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
}

.header-list {
    position: relative;
    -webkit-margin-start: 35px;
    margin-inline-start: 35px;
}
@media (max-width: 1199px) {
    .header-list {
        -webkit-margin-start: 20px;
        margin-inline-start: 20px;
    }
}
.header-list .list-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.header-list .list-btn.active {
    position: relative;
}
.header-list .list-btn.active::after {
    width: 10px;
    height: 10px;
    background-color: #f00;
    box-shadow: 0 0 5px #f00;
    border-radius: 50%;
    content: "";
    display: block;
    position: absolute;
    top: -4px;
    right: -4px;
}
.header-list:hover .list-btn {
    color: var(--primary-color);
}

.menu-btn {
    font-size: 20px;
    -webkit-margin-end: 30px;
    margin-inline-end: 30px;
    color: var(--text-color);
    text-decoration: none;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}
.menu-btn:hover {
    color: var(--primary-color);
}
@media (max-width: 1199px) {
    .menu-btn {
        display: flex;
    }
}

.navigation-overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    opacity: 0.9;
    z-index: 9997;
    display: none;
}

.navigation-bar {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100vh;
    overflow-y: auto;
    background-color: #fff;
    inset-inline-start: 0;
    width: var(--sideBar-width);
    z-index: 9998;
    padding: 68px 0 0;
    box-shadow: 0 2px 6px 0 rgba(67, 89, 113, 0.12);
    scrollbar-width: thin;
    scrollbar-color: var(--border-color) #fff;
}
.navigation-bar::-webkit-scrollbar {
    background-color: #fff;
    width: 7px;
    height: 0px;
}
.navigation-bar::-webkit-scrollbar-thumb {
    background-color: var(--border-color);
}
@media (max-width: 1199px) {
    .navigation-bar {
        inset-inline-start: calc(var(--sideBar-width) * -1);
        transition: all 0.3s ease-in-out;
    }
    .navigation-bar.active {
        inset-inline-start: 0;
    }
}

.navigation-content {
    min-height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    padding: 30px 15px;
}
@media (max-width: 1199px) {
    .navigation-content {
        justify-content: flex-start;
    }
}

.logout-btn {
    width: 100%;
}

.navigation-list {
    margin-bottom: 0;
    width: 100%;
    padding: 0;
}
.navigation-list > li {
    width: 100%;
    margin-bottom: 15px;
    position: relative;
    transform: perspective(1px);
}

.navigation-link {
    height: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: var(--border-radius);
    padding: 0 15px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    color: var(--text-color);
    transition: all 0.3s ease-in-out;
}
.navigation-link i {
    -webkit-margin-end: 7px;
    margin-inline-end: 7px;
}
.navigation-link:not([href])::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f078";
    -webkit-margin-start: auto;
    margin-inline-start: auto;
    font-size: 12px;
    color: var(--text-color);
    transition: all 0.3s ease-in-out;
}
.navigation-link:hover {
    color: var(--primary-color);
}
.navigation-link:hover::after {
    color: var(--primary-color);
}
.navigation-link::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}
.navigation-link.active {
    color: var(--primary-color);
    font-weight: 600;
}
.navigation-link.active::before {
    visibility: visible;
    opacity: 0.2;
}
.navigation-link.active:after {
    color: var(--primary-color);
    transform: rotate(180deg);
}
.logout-btn .navigation-link {
    background-color: #6b1d1d;
    color: #fff;
    margin: 0;
}
.logout-btn .navigation-link::before {
    display: none;
}
.logout-btn .navigation-link:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.children-list {
    -webkit-padding-start: 35px;
    padding-inline-start: 35px;
    position: relative;
    z-index: 1;
    display: none;
}
.children-list > li {
    padding: 0 0 10px;
}
.children-list .children-link {
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.children-list .children-link:hover {
    color: var(--primary-color);
}
.children-list .children-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.page-section {
    position: relative;
}
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    z-index: 9999;
}
.preloader .preloader-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.preloader .preloader-logo-cont {
    position: relative;
    height: 60px;
}
.preloader .preloader-logo-cont img {
    height: 100%;
    width: auto;
    max-width: none;
}
.preloader .preloader-logo-cont .colored {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 100%;
    overflow: hidden;
    animation: loader 5s linear infinite;
}
.preloader .preloader-logo-cont .colored img {
    position: absolute;
    right: 0;
}
.preloader .preloader-logo-cont .filterd {
    width: auto;
    height: 100%;
    opacity: 0.5;
    filter: grayscale(1);
}

@keyframes loader {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}
.page-section .lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.page-section .lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #585151;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #585151 transparent transparent transparent;
}
.page-section .lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}
.page-section .lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}
.page-section .lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.page-section {
    -webkit-margin-start: var(--sideBar-width);
    margin-inline-start: var(--sideBar-width);
    padding: 15px 0;
    height: calc(100vh - 68px);
    max-height: calc(100vh - 68px);
    overflow-y: auto;
}
@media (max-width: 1199px) {
    .page-section {
        margin: 0;
        height: auto;
        max-height: none;
    }
}

.page-content {
    padding: 30px 0;
}

.breadcrumb-tools-cont {
    display: flex;
    align-items: center;
    width: 100%;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    margin: 0;
    transform: perspective(1px);
    position: relative;
    width: 100%;
    height: 45px;
    padding: 15px;
}
.page-breadcrumb:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.2;
    border-radius: var(--border-radius);
    z-index: -1;
}
.page-breadcrumb li {
    display: flex;
    align-items: center;
}
.page-breadcrumb li ~ li::before {
    margin: 0 7px;
    content: "|";
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
}
@media (max-width: 991px) {
    .page-breadcrumb li {
        display: none;
    }
    .page-breadcrumb li:last-of-type {
        display: flex;
    }
    .page-breadcrumb li:last-of-type::before {
        display: none;
    }
}
.page-breadcrumb a {
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.page-breadcrumb a:hover {
    color: var(--primary-color);
}

.page-tools {
    flex-shrink: 0;
    -webkit-margin-start: 15px;
    margin-inline-start: 15px;
}

.listing-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}
@media (max-width: 991px) {
    .listing-footer {
        flex-wrap: wrap;
        margin-top: 30px;
    }
}

@media (max-width: 991px) {
    .items-count-text {
        order: 1;
    }
}

.items-count-select {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
@media (max-width: 991px) {
    .items-count-select {
        order: 2;
    }
}
.items-count-select label {
    font-weight: 400;
    margin: 0;
    padding: 0;
    -webkit-margin-end: 10px;
    margin-inline-end: 10px;
}
@media (max-width: 991px) {
    .items-count-select label {
        display: none;
    }
}
.items-count-select select {
    width: 70px;
    height: 40px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 0 10px;
    background-color: #fff;
}
html[dir=rtl] .items-count-select select {
    background-position: left 10px center;
}
html[dir=ltr] .items-count-select select {
    background-position: right 10px center;
}

.auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
}

.auth-content {
    position: relative;
    width: 430px;
    margin: auto;
    padding: 30px 15px;
}
.auth-content .auth-card {
    position: relative;
    z-index: 3;
    background-color: #fff;
    border-radius: var(--border-radius);
    width: 100%;
    box-shadow: 0 2px 6px 0 rgba(67, 89, 113, 0.12);
    padding: 24px;
}
.auth-content .logo-cont {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}
.auth-content .logo-cont .logo {
    height: 75px;
    display: block;
}
.auth-content .logo-cont .logo img {
    max-height: 100%;
}
.auth-content .auth-head {
    margin-bottom: 50px;
}
.auth-content .auth-title {
    font-size: 18px;
    color: var(--text-color);
    font-weight: 800;
    text-align: center;
    margin: 0;
}
.auth-content .auth-hint {
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
    color: var(--text-color);
}
.auth-content .auth-hint span {
    display: block;
    font-weight: 500;
    color: var(--primary-color);
    direction: ltr;
}
.auth-content .form-group {
    margin-bottom: 30px;
    width: 100%;
    position: relative;
}
.auth-content .form-group .label-title {
    margin-bottom: 0;
    position: absolute;
    display: block;
    inset-inline-start: 0;
    top: 0;
    pointer-events: none;
    width: 100%;
    height: 45px;
    color: var(--text-color);
}
.auth-content .form-group .label-title i {
    position: absolute;
    inset-inline-start: 0;
    transition: all 0.3s ease-in-out;
    top: 13px;
    font-size: 18px;
}
.auth-content .form-group .label-title::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    inset-inline-start: 0;
    width: 0;
    height: 2px;
    transition: all 0.3s ease-in-out;
    background: var(--primary-color);
}
.auth-content .form-group .form-control {
    border-radius: 0;
    border: none;
    border-bottom: 2px solid var(--border-color);
    padding: 0 32px;
    color: var(--text-color);
    height: 45px;
    transition: all 0.3s ease-in-out;
    font-size: 15px;
    font-weight: 500;
}
.auth-content .form-group .form-control::-moz-placeholder {
    color: #a1a1a1;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.auth-content .form-group .form-control::placeholder {
    color: #a1a1a1;
    transition: all 0.3s ease-in-out;
}
html[dir=rtl] .auth-content .form-group .form-control::-moz-placeholder {
    text-align: right;
}
html[dir=rtl] .auth-content .form-group .form-control::placeholder {
    text-align: right;
}
html[dir=ltr] .auth-content .form-group .form-control::-moz-placeholder {
    text-align: left;
}
html[dir=ltr] .auth-content .form-group .form-control::placeholder {
    text-align: left;
}
.auth-content .form-group .form-control:focus::-moz-placeholder {
    color: transparent;
}
.auth-content .form-group .form-control:focus::placeholder {
    color: transparent;
}
.auth-content .form-group .form-control:focus + .label-title {
    color: #a1a1a1;
}
.auth-content .form-group .form-control:focus + .label-title i {
    top: -15px;
}
.auth-content .form-group .form-control:focus + .label-title::before {
    width: 100%;
}
.auth-content .form-group .showPass {
    position: absolute;
    inset-inline-end: 0;
    transition: all 0.3s ease-in-out;
    top: 13px;
    font-size: 18px;
    color: var(--text-color);
    padding: 0;
    background-color: transparent;
    border: none;
}
.auth-content .form-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}
.auth-content .remember-me {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
}
.auth-content .remember-me .mark {
    height: 18px;
    width: 18px;
    overflow: hidden;
    background-color: #fff;
    border: 2px solid var(--border-color);
    border-radius: calc(var(--border-radius) / 2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
    transition: all 0.3s ease-in-out;
}
.auth-content .remember-me .mark i {
    transform: scale(0) rotate(360deg);
    transition: all 0.3s ease-in-out;
}
.auth-content .remember-me .text {
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
    -webkit-margin-start: 7px;
    margin-inline-start: 7px;
}
.auth-content .remember-me input {
    display: none;
}
.auth-content .remember-me input:checked ~ .mark {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}
.auth-content .remember-me input:checked ~ .mark i {
    transform: none;
}
.auth-content .auth-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    -webkit-margin-start: auto;
    margin-inline-start: auto;
    background-color: transparent;
    border: none;
    padding: 0;
    transition: all 0.3s ease-in-out;
}
.auth-content .auth-link:hover {
    color: var(--primary-color);
}
.auth-content .form-submit {
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    border-radius: 23px;
    transition: all 0.3s ease-in-out;
}
.auth-content .form-submit:disabled, .auth-content .form-submit.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}
.auth-content .form-submit:hover {
    opacity: 0.8;
}
.auth-content::after, .auth-content::before {
    content: url(../images/authPattern.svg);
    position: absolute;
}
.auth-content::before {
    top: -40px;
    inset-inline-end: -40px;
}
.auth-content::after {
    bottom: -68px;
    inset-inline-start: -46px;
}
.auth-content .form_error {
    font-size: 12px;
    color: #f00;
}

.inputs-numbers {
    margin-bottom: 30px;
}
.inputs-numbers .inputs-cont {
    display: flex;
    align-items: center;
    justify-content: center;
    direction: ltr;
}
.inputs-numbers .code-input {
    margin: 0 5px;
    flex: 1;
    text-align: center;
    padding: 0 5px;
    font-size: 18px;
    color: var(--primary-color);
    height: 45px;
    width: 100%;
    border-radius: 23px;
    border: 2px solid var(--border-color);
    font-weight: 700;
}
.inputs-numbers .code-input:disabled {
    opacity: 0.5;
}

.countdown {
    font-size: 14px;
}
.countdown .auth-link {
    display: none;
}

.change-theme {
    width: 45px;
    height: 45px;
    position: relative;
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    border: none;
}
.change-theme input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
}

.statistics-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}
@media (max-width: 1199px) {
    .statistics-cards {
        gap: 15px;
    }
}
@media (max-width: 991px) {
    .statistics-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.statistics-card {
    box-shadow: 0 2px 6px 0 rgba(67, 89, 113, 0.12);
    padding: 20px;
    border-radius: var(--border-radius);
    background-color: #fff;
    display: flex;
    align-items: center;
    transform: perspective(1px) translateZ(0);
    transition: all 0.3s ease-in-out;
}
.statistics-card .card-icon {
    width: 50px;
    height: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transform: perspective(1px);
}
.statistics-card .card-icon img {
    max-width: 30px;
}
.statistics-card .card-icon::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: var(--primary-color);
    opacity: 0.5;
    border-radius: calc(var(--border-radius) / 2);
}
.statistics-card .card-body {
    -webkit-margin-start: 25px;
    margin-inline-start: 25px;
}
.statistics-card .card-header {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}
.statistics-card .card-number {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
}
.statistics-card .card-link {
    display: flex;
    align-items: center;
    width: -moz-max-content;
    width: max-content;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    -webkit-margin-start: auto;
    margin-inline-start: auto;
    transition: all 0.3s ease-in-out;
}
.statistics-card .card-link:after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    -webkit-margin-start: auto;
    margin-inline-start: auto;
    font-size: 12px;
    opacity: 0;
    -webkit-margin-start: 5px;
    margin-inline-start: 5px;
    transition: all 0.3s ease-in-out;
}
html[dir=rtl] .statistics-card .card-link:after {
    content: "\f053";
}
html[dir=ltr] .statistics-card .card-link:after {
    content: "\f054";
}
.statistics-card .card-link:hover {
    color: var(--primary-color);
}
.statistics-card .card-link:hover:after {
    opacity: 1;
}
.statistics-card:before {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    content: "";
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 0;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
    transition-duration: 0.3s;
    transition-property: transform, opacity;
}
.statistics-card:hover {
    transform: translateY(-5px);
}
.statistics-card:hover::before {
    opacity: 0.6;
    transform: translateY(5px);
}

.add-permissions {
    min-width: 225px;
}
@media (max-width: 991px) {
    .add-permissions {
        min-width: auto;
    }
}

.group-name {
    width: 100%;
}

.selected-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 15px;
}
@media (max-width: 991px) {
    .selected-item {
        flex-direction: column;
        align-items: flex-end;
        margin-bottom: 30px;
    }
}
.selected-item .selected-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 15%;
    /*height: 45px;*/
    position: relative;
    color: var(--primary-color);
    font-size: 16px;
    padding: 0 23px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin: 0;
    cursor: pointer;
    -webkit-margin-end: 30px;
    margin-inline-end: 30px;
}
.selected-item .selected-title:after {
    content: "";
    background-color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
@media (max-width: 991px) {
    .selected-item .selected-title {
        width: 100%;
        margin: 0 0 15px;
    }
}
.selected-item .selected-permissions {
    display: flex;
    align-items: center;
}
@media (max-width: 991px) {
    .selected-item .selected-permissions {
        justify-content: flex-end;
    }
}
.selected-item .selected-permissions .checkbox {
    -webkit-margin-end: 30px;
    margin-inline-end: 30px;
}
.selected-item .selected-permissions .checkbox:last-of-type {
    margin: 0;
}
@media (max-width: 991px) {
    .selected-item .selected-permissions .checkbox {
        -webkit-margin-end: 15px;
        margin-inline-end: 15px;
    }
}

.employees-table .table tr td:last-of-type,
.employees-table .table tr th:last-of-type {
    width: 120px;
}

.categories-table .table tr td:last-of-type,
.categories-table .table tr th:last-of-type {
    width: 120px;
}

.members-table .table {
    min-width: 1050px;
}
.members-table .table tr td:last-of-type,
.members-table .table tr th:last-of-type {
    width: 150px;
}
.members-table .items-count {
    display: flex;
    align-items: center;
}
.members-table .items-count i {
    -webkit-margin-end: 5px;
    margin-inline-end: 5px;
}

.extras-table {
    margin-top: 40px;
}
.extras-table .table {
    min-width: 850px;
}
.extras-table .table tr td:last-of-type,
.extras-table .table tr th:last-of-type {
    width: 120px;
}

.cases-newReq-table .table {
    min-width: 1050px;
}
.cases-newReq-table .table tr td:last-of-type,
.cases-newReq-table .table tr th:last-of-type {
    width: 150px;
}

.cases-table .table {
    min-width: 1310px;
}
@media (max-width: 767px) {
    .cases-table .table {
        min-width: 1400px;
    }
}
.cases-table .table tr td:last-of-type,
.cases-table .table tr th:last-of-type {
    width: 150px;
}
.cases-table .progress-cont {
    margin-top: 30px;
}
@media (max-width: 991px) {
    .cases-table .progress-cont {
        margin: 0;
    }
}
.cases-table .progress {
    width: 450px;
    height: 20px;
    border-radius: 10px;
    margin-bottom: 7px;
    position: relative;
    overflow: unset;
}
@media (max-width: 991px) {
    .cases-table .progress {
        width: 350px;
    }
}
.cases-table .progress .progress-bar {
    background-color: var(--primary-color);
    position: relative;
    overflow: unset;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cases-table .progress .progress-bar .date {
    position: absolute;
    bottom: calc(100% + 3px);
    font-size: 12px;
    color: var(--text-color);
}
.cases-table .progress .progress-bar .date.start {
    inset-inline: unset;
}
html[dir=rtl] .cases-table .progress .progress-bar .date.start {
    right: 0;
    transform: translateX(50%);
}
html[dir=ltr] .cases-table .progress .progress-bar .date.start {
    left: 0;
    transform: translateX(-50%);
}
.cases-table .progress .progress-bar .date.end {
    inset-inline: unset;
}
html[dir=rtl] .cases-table .progress .progress-bar .date.end {
    left: 0;
    transform: translateX(-50%);
}
html[dir=ltr] .cases-table .progress .progress-bar .date.end {
    right: 0;
    transform: translateX(50%);
}
.cases-table .progress .progress-bar:first-of-type {
    border-start-start-radius: 10px;
    border-end-start-radius: 10px;
}
.cases-table .progress .progress-bar:last-of-type {
    border-end-end-radius: 10px;
    border-start-end-radius: 10px;
}
.cases-table .progress .date {
    position: absolute;
    bottom: calc(100% + 3px);
    font-size: 12px;
    color: var(--text-color);
}
@media (max-width: 991px) {
    .cases-table .progress .date {
        display: none;
    }
}
.cases-table .progress .date.start {
    inset-inline-start: 0;
}
.cases-table .progress .date.end {
    inset-inline-end: 0;
}
.cases-table .progress-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}
.cases-table .progress-text span {
    font-size: 12px;
    color: var(--text-color);
    opacity: 0.8;
}
.cases-table .progress-text strong {
    font-size: 12px;
    color: var(--text-color);
    font-weight: 700;
}

.types-table .table {
    min-width: 800px;
}
.types-table .table tr td:last-of-type,
.types-table .table tr th:last-of-type {
    width: 120px;
}

.addCase-accordion .accordion-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 16px;
    border: none;
    background-color: #fff;
}
.addCase-accordion .accordion-item .accordion-button {
    border-radius: 0;
    position: relative;
    background-color: transparent;
    transform: perspective(1px);
    box-shadow: none;
    border: none;
    color: var(--text-color);
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
}
.addCase-accordion .accordion-item .accordion-button i {
    -webkit-margin-end: 10px;
    margin-inline-end: 10px;
}
.addCase-accordion .accordion-item .accordion-button .count {
    width: 24px;
    height: 24px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    -webkit-margin-start: 10px;
    margin-inline-start: 10px;
    transition: all 0.3s ease-in-out;
}
.addCase-accordion .accordion-item .accordion-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.2;
    z-index: -1;
    transition: all 0.3s ease-in-out;
}
.addCase-accordion .accordion-item .accordion-button:after {
    width: auto;
    height: auto;
    position: relative;
    inset: unset;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f078";
    -webkit-margin-start: auto;
    margin-inline-start: auto;
    font-size: 18px;
    color: var(--text-color);
    transform: none;
    transition: all 0.3s ease-in-out;
    background: none;
}
.addCase-accordion .accordion-item .accordion-button:not(.collapsed) {
    color: #fff;
}
.addCase-accordion .accordion-item .accordion-button:not(.collapsed)::before {
    opacity: 1;
}
.addCase-accordion .accordion-item .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    color: #fff;
}
.addCase-accordion .accordion-item .accordion-button:not(.collapsed) .count {
    background-color: #fff;
    color: var(--primary-color);
}
.addCase-accordion .accordion-item .accordion-body {
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.addCase-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}
@media (max-width: 991px) {
    .addCase-nav {
        display: none;
    }
}
.addCase-nav h2 {
    flex: 1;
    display: flex;
    align-items: center;
}
.addCase-nav h2:last-of-type {
    flex: unset;
}
.addCase-nav h2:last-of-type .accordion-button:after {
    display: none;
}
.addCase-nav .accordion-button {
    border-radius: 0;
    position: relative;
    background-color: transparent;
    box-shadow: none;
    border: none;
    color: var(--text-color);
    opacity: 0.5;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
}
.addCase-nav .accordion-button i {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    -webkit-margin-end: 5px;
    margin-inline-end: 5px;
    flex-shrink: 0;
}
.addCase-nav .accordion-button:after {
    content: "";
    height: 1px;
    background-color: var(--border-color);
    width: 100%;
    flex-shrink: 1;
    margin: 0 15px;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
}
.addCase-nav .accordion-button:not(.collapsed) {
    pointer-events: none;
    opacity: 1;
}
.addCase-nav .accordion-button:not(.collapsed)::after {
    background-color: var(--primary-color);
}

.accordion-tabs {
    display: flex;
    align-items: flex-start;
}
@media (max-width: 991px) {
    .accordion-tabs {
        flex-direction: column;
    }
}
.accordion-tabs .nav {
    display: flex;
    flex-direction: column;
    -webkit-margin-end: 15px;
    margin-inline-end: 15px;
}
@media (max-width: 991px) {
    .accordion-tabs .nav {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        margin: 0;
        margin-bottom: 15px;
        -webkit-padding-end: 5px;
        padding-inline-end: 5px;
        max-width: 100%;
    }
}
.accordion-tabs .nav-link {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    background-color: transparent;
    transform: perspective(1px);
    box-shadow: none;
    border: none;
    color: var(--text-color);
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    height: 45px;
    width: 350px;
}
@media (max-width: 991px) {
    .accordion-tabs .nav-link {
        width: auto;
        white-space: nowrap;
        flex-shrink: 0;
    }
}
.accordion-tabs .nav-link ~ .nav-link {
    margin-top: 15px;
}
@media (max-width: 991px) {
    .accordion-tabs .nav-link ~ .nav-link {
        margin: 0;
        -webkit-margin-start: 10px;
        margin-inline-start: 10px;
    }
}
.accordion-tabs .nav-link i {
    -webkit-margin-end: 5px;
    margin-inline-end: 5px;
}
.accordion-tabs .nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.2;
    z-index: -1;
    transition: all 0.3s ease-in-out;
}
.accordion-tabs .nav-link:after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    -webkit-margin-start: auto;
    margin-inline-start: auto;
    font-size: 18px;
    transform: none;
}
html[dir=rtl] .accordion-tabs .nav-link:after {
    content: "\f053";
}
html[dir=ltr] .accordion-tabs .nav-link:after {
    content: "\f054";
}
@media (max-width: 991px) {
    .accordion-tabs .nav-link:after {
        display: none;
    }
}
.accordion-tabs .nav-link.active {
    color: #fff;
}
.accordion-tabs .nav-link.active::before {
    background-color: var(--primary-color);
    opacity: 1;
}
.accordion-tabs .tab-content {
    width: 100%;
}
.accordion-tabs .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.accordion-tabs .form-grid .form-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 7px;
}
@media (max-width: 991px) {
    .accordion-tabs .form-grid {
        grid-template-columns: 1fr;
    }
    .accordion-tabs .form-grid .form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.tab-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-color);
    display: flex;
    align-items: center;
    width: 100%;
    white-space: nowrap;
    margin-bottom: 20px;
}
.tab-title::after {
    content: "";
    width: 100%;
    height: 1px;
    border-top: 1px dashed var(--primary-color);
    opacity: 0.5;
    -webkit-margin-start: 15px;
    margin-inline-start: 15px;
}

.form-grid ~ .accordion-tabs {
    margin-top: 30px;
}

.audience-table table {
    min-width: 800px;
}
.audience-table table th:last-of-type,
.audience-table table td:last-of-type {
    width: 400px;
}
@media (max-width: 991px) {
    .audience-table table th:last-of-type,
    .audience-table table td:last-of-type {
        width: auto;
    }
}

.audience-statuses {
    display: inline-flex;
    align-items: center;
    background-color: #333;
    height: 30px;
    border-radius: 15px;
    overflow: hidden;
}
.audience-statuses label {
    margin: 0;
    padding: 0;
    cursor: pointer;
}
.audience-statuses label .status {
    transition: all 0.3s ease-in-out;
}
.audience-statuses label input {
    display: none;
}
.audience-statuses label input:checked ~ .status {
    color: #fff;
    background-color: var(--primary-color);
}

.case-final-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 15px;
}
.case-final-grid .form-group {
    max-width: 100%;
    overflow: hidden;
}
@media (max-width: 991px) {
    .case-final-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 767px) {
    .case-final-grid {
        grid-template-columns: 1fr;
    }
}

.accordion-body-title {
    position: relative;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    transform: perspective(1px);
    margin-bottom: 15px;
}
.accordion-body-title i {
    width: 25px;
    height: 25px;
    font-size: 12px;
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    -webkit-margin-end: 7px;
    margin-inline-end: 7px;
}
.accordion-body-title::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
    opacity: 0.3;
    z-index: -1;
}

.accordion-body-text {
    position: relative;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 14px;
    color: var(--text-color);
    transform: perspective(1px);
}
.accordion-body-text::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
    opacity: 0.1;
    z-index: -1;
}

.case-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px 0;
    margin-bottom: 30px;
    width: 100%;
    overflow-x:scroll;
}
.case-summary .summary-blocks {
    display: flex;
    -webkit-margin-start: auto;
    margin-inline-start: auto;

}
@media (max-width: 991px) {
    .case-summary .summary-blocks {
        flex-direction: column;
        width: 100%;
    }
}
.case-summary .summary-block {
    background-color: #fff;
    padding: 8px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    color: var(--text-color);

}
@media (min-width: 1400px) {
    .case-summary .summary-block {
        min-width: 230px;
    }
}
.case-summary .summary-block ~ .summary-block {
    -webkit-margin-start: 15px;
    margin-inline-start: 15px;
}
@media (max-width: 991px) {
    .case-summary .summary-block ~ .summary-block {
        margin: 0;
        margin-top: 8px;
    }
}
@media (max-width: 991px) {
    .case-summary .summary-block {
        width: 100%;
        padding: 10px;
    }
}
.case-summary .case-title {
    -webkit-margin-end: auto;
    margin-inline-end: auto;
}
.case-summary .case-title h4 {
    font-size: 20px;
    color: var(--text-color);
    font-weight: 700;
    margin: 0 0 5px;
}
.case-summary .case-title span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    opacity: 0.7;
}
.case-summary .case-attachments i {
    -webkit-margin-end: 5px;
    margin-inline-end: 5px;
}
.case-summary .case-attachments .attachments-count {
    -webkit-margin-end: auto;
    margin-inline-end: auto;
    opacity: 0.7;
}
.case-summary .case-attachments .attachments-link {
    color: var(--text-color);
    -webkit-margin-start: 15px;
    margin-inline-start: 15px;
    transition: all 0.3s ease-in-out;
}
.case-summary .case-attachments .attachments-link:hover {
    color: var(--primary-color);
    text-decoration: none;
}
.case-summary .case-progress {
    flex-direction: column;
    padding: 30px 8px 8px;
}
@media (max-width: 991px) {
    .case-summary .case-progress {
        padding: 10px 10px 10px;
    }
}
.case-summary .progress {
    width: 450px;
    height: 20px;
    border-radius: 10px;
    margin-bottom: 7px;
    position: relative;
    overflow: unset;
}
@media (max-width: 991px) {
    .case-summary .progress {
        width: 100%;
    }
}
.case-summary .progress .progress-bar {
    background-color: var(--primary-color);
    position: relative;
    overflow: unset;
    display: flex;
    align-items: center;
    justify-content: center;
}
.case-summary .progress .progress-bar .date {
    position: absolute;
    bottom: calc(100% + 3px);
    font-size: 12px;
    color: var(--text-color);
}
.case-summary .progress .progress-bar .date.start {
    inset-inline: unset;
}
html[dir=rtl] .case-summary .progress .progress-bar .date.start {
    right: 0;
    transform: translateX(50%);
}
html[dir=ltr] .case-summary .progress .progress-bar .date.start {
    left: 0;
    transform: translateX(-50%);
}
.case-summary .progress .progress-bar .date.end {
    inset-inline: unset;
}
html[dir=rtl] .case-summary .progress .progress-bar .date.end {
    left: 0;
    transform: translateX(-50%);
}
html[dir=ltr] .case-summary .progress .progress-bar .date.end {
    right: 0;
    transform: translateX(50%);
}
.case-summary .progress .progress-bar:first-of-type {
    border-start-start-radius: 10px;
    border-end-start-radius: 10px;
}
.case-summary .progress .progress-bar:last-of-type {
    border-end-end-radius: 10px;
    border-start-end-radius: 10px;
}
.case-summary .progress .date {
    position: absolute;
    bottom: calc(100% + 3px);
    font-size: 12px;
    color: var(--text-color);
}
@media (max-width: 991px) {
    .case-summary .progress .date {
        display: none;
    }
}
.case-summary .progress .date.start {
    inset-inline-start: 0;
}
.case-summary .progress .date.end {
    inset-inline-end: 0;
}
.case-summary .progress-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.preview-tabs .nav-responsive {
    max-width: 100%;
    overflow-x: auto;
    margin-bottom: 15px;
}
.preview-tabs .nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    width: -moz-max-content;
    width: max-content;
    min-width: 100%;
    transform: perspective(1px);
}
.preview-tabs .nav::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.2;
    z-index: -1;
}
.preview-tabs .nav-link {
    background-color: transparent;
    color: var(--text-color);
    font-weight: 500;
    font-size: 14px;
    height: 45px;
    padding: 0 10px;
    border: none;
    flex: 1;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    transition: all 0.3s ease-in-out;
}
.preview-tabs .nav-link span {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    -webkit-margin-start: 5px;
    margin-inline-start: 5px;
    transition: all 0.3s ease-in-out;
}
.preview-tabs .nav-link.active {
    color: #fff;
    background-color: var(--primary-color);
}
.preview-tabs .nav-link.active span {
    color: var(--primary-color);
    background-color: #fff;
}

.tab-top {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}
.tab-top .hint-text {
    display: flex;
    align-items: center;
    margin: 0;
    transform: perspective(1px);
    position: relative;
    width: 100%;
    height: 45px;
    padding: 15px;
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
}
.tab-top .hint-text:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.2;
    border-radius: var(--border-radius);
    z-index: -1;
}
.tab-top .form-group {
    margin: 0;
    width: 100%;
}
.tab-top .page-tools {
    -webkit-margin-start: auto;
    margin-inline-start: auto;
}

.info-table table {
    min-width: 950px;
}
.info-table table th {
    white-space: nowrap;
}
.info-table table th:last-of-type,
.info-table table td:last-of-type {
    width: 150px;
}

.casesSetting-table .table tr td:last-of-type,
.casesSetting-table .table tr th:last-of-type {
    width: 120px;
}

.page-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 45px;
}
.page-grid .grid-form,
.page-grid .grid-tags {
    max-width: 100%;
    overflow: hidden;
}
@media (max-width: 991px) {
    .page-grid {
        grid-template-columns: 1fr;
    }
}

.sideTags-accordion .accordion-item {
    overflow: hidden;
    margin-bottom: 25px;
    border: none;
    background-color: transparent;
}
.sideTags-accordion .accordion-item .accordion-button {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    background-color: transparent;
    transform: perspective(1px);
    box-shadow: none;
    border: none;
    color: var(--text-color);
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
}
.sideTags-accordion .accordion-item .accordion-button i {
    -webkit-margin-end: 10px;
    margin-inline-end: 10px;
}
.sideTags-accordion .accordion-item .accordion-button .count {
    width: 24px;
    height: 24px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    -webkit-margin-start: 10px;
    margin-inline-start: 10px;
    transition: all 0.3s ease-in-out;
}
.sideTags-accordion .accordion-item .accordion-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.2;
    z-index: -1;
    transition: all 0.3s ease-in-out;
}
.sideTags-accordion .accordion-item .accordion-button:after {
    width: auto;
    height: auto;
    position: relative;
    inset: unset;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f078";
    -webkit-margin-start: auto;
    margin-inline-start: auto;
    font-size: 18px;
    color: var(--text-color);
    transform: none;
    transition: all 0.3s ease-in-out;
    background: none;
}
.sideTags-accordion .accordion-item .accordion-button:not(.collapsed) {
    color: #fff;
}
.sideTags-accordion .accordion-item .accordion-button:not(.collapsed)::before {
    opacity: 1;
}
.sideTags-accordion .accordion-item .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    color: #fff;
}
.sideTags-accordion .accordion-item .accordion-button:not(.collapsed) .count {
    background-color: #fff;
    color: var(--primary-color);
}
.sideTags-accordion .accordion-item .accordion-body {
    border: none;
    padding: 0;
}
.sideTags-accordion .accordion-item .accordion-body .tag-item {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    background-color: transparent;
    transform: perspective(1px);
    box-shadow: none;
    border: none;
    color: var(--text-color);
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 15px;
    margin-top: 15px;
}
.sideTags-accordion .accordion-item .accordion-body .tag-item i {
    -webkit-margin-end: 7px;
    margin-inline-end: 7px;
}
.sideTags-accordion .accordion-item .accordion-body .tag-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.1;
    z-index: -1;
    transition: all 0.3s ease-in-out;
}
.sideTags-accordion .accordion-item .accordion-body .tag-item:hover::before {
    opacity: 0.3;
}

.grid-form .form-grid {
    grid-template-columns: 1fr 1fr;
}
@media (max-width: 991px) {
    .grid-form .form-grid {
        grid-template-columns: 1fr;
    }
}

.financials-table .table {
    min-width: 1050px;
}
.financials-table .table tr td:last-of-type,
.financials-table .table tr th:last-of-type {
    width: 120px;
}

.countries-table .table {
    min-width: 1000px;
}
.countries-table .table tr td:last-of-type,
.countries-table .table tr th:last-of-type {
    width: 120px;
}

.banks-table .table {
    min-width: 500px;
}
.banks-table .table tr td:last-of-type,
.banks-table .table tr th:last-of-type {
    width: 120px;
}

.titles-table .table tr td:last-of-type,
.titles-table .table tr th:last-of-type {
    width: 120px;
}

.degrees-table .table tr td:last-of-type,
.degrees-table .table tr th:last-of-type {
    width: 120px;
}

.contact-table .table {
    min-width: 1000px;
}
.contact-table .table tr td:last-of-type,
.contact-table .table tr th:last-of-type {
    width: 120px;
}

.notifications-list {
    margin-bottom: 30px;
}

.notification-item {
    padding: 20px 20px 25px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.0392156863);
    border-radius: 15px;
    background-color: #fff;
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
@media (max-width: 991px) {
    .notification-item {
        flex-wrap: wrap;
        padding: 15px;
    }
}
.notification-item .notification-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    -webkit-margin-end: 10px;
    margin-inline-end: 10px;
    position: relative;
    transform: perspective(1px);
    overflow: hidden;
    color: var(--primary-color);
}
.notification-item .notification-icon::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--primary-color);
    opacity: 0.2;
}
.notification-item .notification-text {
    margin-top: 9px;
    -webkit-margin-end: 10px;
    margin-inline-end: 10px;
}
@media (max-width: 991px) {
    .notification-item .notification-text {
        -webkit-margin-end: 0;
        margin-inline-end: 0;
        width: calc(100% - 50px);
    }
}
.notification-item .notification-title {
    display: flex;
    align-items: center;
    margin-bottom: 13px;
    line-height: 1.375;
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
}
.notification-item .notification-desc {
    font-size: 16px;
    color: var(--text-color);
    margin: 0;
    line-height: 1.25;
}
.notification-item .notification-date {
    height: 40px;
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #767676;
    flex-shrink: 0;
    -webkit-margin-start: auto;
    margin-inline-start: auto;
}
.notification-item .notification-date i {
    -webkit-margin-end: 5px;
    margin-inline-end: 5px;
}
@media (max-width: 991px) {
    .notification-item .notification-date {
        width: 100%;
        justify-content: flex-end;
        height: auto;
        margin-top: 10px;
    }
}
.notification-item:hover {
    transform: translateY(-5px);
}

.sec-more {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    height: 45px;
    width: 200px;
    color: #fff;
    background-color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--border-radius);
    margin: auto;
    transition: all 0.3s ease-in-out;
}
.sec-more i {
    -webkit-margin-start: 5px;
    margin-inline-start: 5px;
    font-size: 14px;
}
.sec-more:hover {
    color: #fff;
    background-color: var(--primary-color);
    opacity: 0.7;
}/*# sourceMappingURL=main.css.map */
.fc-daygrid-block-event .fc-event-title {
    white-space: normal;
}

.newnotification{
    color: #ff1616;
}
.cke_contents {
    height: 500px !important;
}

.fa-solid {
    --fa-beat-fade-opacity: 0.67;
    --fa-beat-fade-scale: 1.075;
}
.form-group:has([type=tel]) .form-control {
    direction: ltr;
    /* text-align: right; */
}

.dires{
    direction: rtl;
}
 .fullnameclass {
    clear: both;
    /*display: inline-block;*/
    overflow: hidden;
    white-space: nowrap;

 }
.members-table, .members-page{
    background-color: #fff;
    box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 5px;
}
.fa-solid.fa-trash{ color: #999}
