/*____________ mixin _________________ */
.btn {
  min-width: 100px;
  direction: rtl;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 1rem;
  padding: 0.8rem 1.5rem;
  border: thin solid #eaeaea;
  font-size: 14px;
  cursor: pointer;
  width: fit-content;
  white-space: nowrap;
  transition: all 0.1s ease-in-out;
}
.btn:focus, .btn:active {
  box-shadow: none !important;
}
.btn img {
  width: 18px;
}

.btn-light {
  background: transparent;
  color: #0b2746;
  border: thin solid #f3f4f6;
}
.btn-light:hover {
  background: #f3f4f6;
  border-color: transparent;
}

.btn-primary {
  background: #0a6fc2;
  color: #ffffff;
  border: thin solid transparent;
}
.btn-primary:hover {
  background: rgb(7.5, 83.25, 145.5);
  border-color: transparent;
}

.btn-primary-light {
  background: #e1effd;
  color: #0b2746;
  border: thin solid transparent;
}
.btn-primary-light:hover {
  background: rgb(105.46875, 175.25, 245.03125);
  border-color: transparent;
  color: #ffffff;
}

.btn-primary-outline {
  background: transparent;
  color: #0a6fc2;
  border: thin solid #0a6fc2;
}
.btn-primary-outline:hover {
  background: #0a6fc2;
  border-color: transparent;
  color: #ffffff;
}

.btn-primary-dark-outline {
  background: transparent;
  color: #0a6fc2;
  border: thin solid #0a6fc2;
}
.btn-primary-dark-outline:hover {
  background: #0c4a80;
  border-color: transparent;
  color: #ffffff;
}
.btn-primary-dark-outline:hover svg {
  fill: #fff;
}

.btn-secondary {
  background: #f3f4f6;
  color: #0b2746;
  border: thin solid transparent;
}
.btn-secondary:hover {
  background: rgb(213.8571428571, 217.2857142857, 224.1428571429);
  color: #0b2746;
  border-color: transparent;
}

.btn-secondary-light {
  background: #f9fafb;
  color: #0b2746;
  border: thin solid transparent;
}
.btn-secondary-light:hover {
  background: rgb(172.5, 186.25, 200);
  border-color: transparent;
}

.btn-secondary-outline {
  background: transparent;
  color: #f3f4f6;
  border: thin solid #f3f4f6;
}
.btn-secondary-outline:hover {
  background: #f3f4f6;
  border-color: transparent;
  color: #0b2746;
}

.btn-danger {
  background: #DD0417;
  color: #ffffff;
  border: thin solid transparent;
}
.btn-danger:hover {
  background: rgb(170.9066666667, 3.0933333333, 17.7866666667);
  border-color: transparent;
}

.btn-danger-light {
  background: rgba(255, 63, 51, 0.1019607843);
  color: #0b2746;
  border: thin solid transparent;
}
.btn-danger-light:hover {
  background: rgba(178.5, 10.5, 0, 0.1019607843);
  border-color: transparent;
}

.btn-danger-outline {
  background: transparent;
  color: #DD0417;
  border: thin solid #DD0417;
}
.btn-danger-outline:hover {
  background: #DD0417;
  border-color: transparent;
  color: #ffffff;
}

.btn-success {
  background: #1A9F58;
  color: #ffffff;
  border: thin solid transparent;
}
.btn-success:hover {
  background: rgb(18.8324324324, 115.1675675676, 63.7405405405);
  border-color: transparent;
}

.btn-success-light {
  background: rgba(11, 238, 45, 0.1019607843);
  color: #0b2746;
  border: thin solid transparent;
}
.btn-success-light:hover {
  background: rgba(5.3674698795, 116.1325301205, 21.9578313253, 0.1019607843);
  border-color: transparent;
}

.btn-success-outline {
  background: transparent;
  color: #1A9F58;
  border: thin solid #1A9F58;
}
.btn-success-outline:hover {
  background: #1A9F58;
  border-color: transparent;
  color: #ffffff;
}

.sidebar {
  min-width: 320px;
  max-width: 320px;
  min-height: 100vh;
  max-height: 100vh;
  background-color: #f4f8fb;
  top: 0;
  align-self: flex-start;
  padding: 0.5rem;
  transition: transform 0.3s ease;
  overflow-y: auto;
  overflow-x: hidden;
}
.sidebar .sidebar-brand {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  padding: 1.5rem 1rem;
}
.sidebar .sidebar-brand .sidebar-brand-icon {
  width: 3rem;
}
.sidebar .sidebar-brand .sidebar-brand-text {
  font-size: 1rem;
  font-weight: 800;
}
.sidebar .nav-item {
  position: relative;
}
.sidebar .nav-item .nav-link {
  display: block;
  width: 100%;
  text-align: right;
  padding: 1rem;
}
.sidebar .nav-item .nav-link i {
  font-size: 0.85rem;
  margin-right: 0.25rem;
}
.sidebar .nav-item .nav-link span {
  white-space: pre-wrap;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline;
}
.sidebar .nav-item .nav-link[data-toggle=collapse]::after {
  transition: all 0.3s ease-in-out;
  width: 1rem;
  text-align: center;
  float: left;
  vertical-align: 0;
  border: 0;
  font-weight: 900;
  content: "\f107";
  font-family: "Font Awesome 5 Free", serif;
}
.sidebar .nav-item .nav-link[data-toggle=collapse].collapsed::after {
  content: "\f106";
}
.sidebar .nav-item:hover .nav-link {
  border-radius: 0.5rem;
  cursor: pointer;
}
.sidebar .nav-item.active .nav-link {
  border-radius: 0.5rem;
  /*font-weight: 700;*/
  cursor: pointer;
}
.sidebar .nav-item.parent-nav-item .parent-nav-link i {
  color: #0b2746;
}
.sidebar .nav-item.parent-nav-item .parent-nav-link span {
  color: #0b2746;
}
.sidebar .nav-item.parent-nav-item .parent-nav-link[data-toggle=collapse]::after {
  color: #0b2746;
}
.sidebar .nav-item.parent-nav-item:hover .parent-nav-link {
  color: #0a6fc2;
}
.sidebar .nav-item.parent-nav-item:hover .parent-nav-link svg {
  fill: #0a6fc2;
}
.sidebar .nav-item.parent-nav-item:hover .parent-nav-link span, .sidebar .nav-item.parent-nav-item:hover .parent-nav-link i {
  color: #0a6fc2;
}
.sidebar .nav-item.parent-nav-item.active .parent-nav-link {
  background: linear-gradient(270deg, #0a6fc2, #08a2da);
  color: #ffffff;
}
.sidebar .nav-item.parent-nav-item.active .parent-nav-link svg {
  fill: #ffffff;
}
.sidebar .nav-item.parent-nav-item.active .parent-nav-link span, .sidebar .nav-item.parent-nav-item.active .parent-nav-link i {
  color: #ffffff;
}
.sidebar .nav-item.parent-nav-item.active .parent-nav-link[data-toggle=collapse]::after {
  color: #ffffff;
}
.sidebar .nav-item.child-nav-item .child-nav-link i {
  color: #0b2746;
}
.sidebar .nav-item.child-nav-item .child-nav-link span {
  color: #0b2746;
}
.sidebar .nav-item.child-nav-item .child-nav-link[data-toggle=collapse]::after {
  color: #0b2746;
}
.sidebar .nav-item.child-nav-item:hover .child-nav-link {
  color: #0a6fc2;
}
.sidebar .nav-item.child-nav-item:hover .child-nav-link svg {
  fill: #0a6fc2;
}
.sidebar .nav-item.child-nav-item:hover .child-nav-link span, .sidebar .nav-item.child-nav-item:hover .child-nav-link i {
  color: #0a6fc2;
}
.sidebar .nav-item.child-nav-item.active .child-nav-link {
  background: #0C4A80;
  color: #ffffff;
}
.sidebar .nav-item.child-nav-item.active .child-nav-link svg {
  fill: #ffffff;
}
.sidebar .nav-item.child-nav-item.active .child-nav-link span, .sidebar .nav-item.child-nav-item.active .child-nav-link i {
  color: #ffffff;
}
.sidebar .nav-item.child-nav-item.active .child-nav-link[data-toggle=collapse]::after {
  color: #ffffff;
}
.sidebar .nav-item .collapse, .sidebar .nav-item .collapsing {
  margin: 0;
}
.sidebar .nav-item .collapse .collapse-inner, .sidebar .nav-item .collapsing .collapse-inner {
  padding: 1rem 0.75rem;
  min-width: 100%;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
  border-radius: 0.5rem;
  box-shadow: none;
}
.sidebar .nav-item .collapse .collapse-inner .collapse-header, .sidebar .nav-item .collapsing .collapse-inner .collapse-header {
  margin: 0;
  white-space: nowrap;
  padding: 0.5rem 1.5rem;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.65rem;
  color: #0b2746;
}
.sidebar .nav-item .collapse .collapse-inner .collapse-item, .sidebar .nav-item .collapsing .collapse-inner .collapse-item {
  padding: 0.8rem 1rem;
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #0b2746;
  text-decoration: none;
  border-radius: 0.35rem;
  white-space: nowrap;
  text-align: right;
}
.sidebar .nav-item .collapse .collapse-inner .collapse-item:hover, .sidebar .nav-item .collapse .collapse-inner .collapse-item:active, .sidebar .nav-item .collapse .collapse-inner .collapse-item.active, .sidebar .nav-item .collapsing .collapse-inner .collapse-item:hover, .sidebar .nav-item .collapsing .collapse-inner .collapse-item:active, .sidebar .nav-item .collapsing .collapse-inner .collapse-item.active {
  background-color: rgba(0, 112, 204, 0.1019607843);
  color: #0a6fc2;
}
.sidebar .nav-item .collapse .collapse-inner .collapse-item:hover svg, .sidebar .nav-item .collapse .collapse-inner .collapse-item:active svg, .sidebar .nav-item .collapse .collapse-inner .collapse-item.active svg, .sidebar .nav-item .collapsing .collapse-inner .collapse-item:hover svg, .sidebar .nav-item .collapsing .collapse-inner .collapse-item:active svg, .sidebar .nav-item .collapsing .collapse-inner .collapse-item.active svg {
  fill: #0a6fc2;
}
.sidebar .nav-item .collapse .collapse-inner .collapse-item span, .sidebar .nav-item .collapsing .collapse-inner .collapse-item span {
  flex: 1;
  white-space: normal;
  word-break: break-word;
  font-weight: 500;
}
.sidebar .nav-item .parent-collapse, .sidebar .nav-item .child-collapse {
  position: relative;
  left: 0;
  z-index: 1;
  top: 3px;
  animation: none;
}
.sidebar .nav-item .parent-collapse .collapse-inner {
  display: block;
  background-color: #e1effd;
}
.sidebar .nav-item .child-collapse .collapse-inner {
  background-color: #CBE5FB;
}
.sidebar .nav-item .collapsing {
  display: block;
  transition: height 0.15s ease;
}
.sidebar hr.sidebar-divider {
  margin: 0 1rem 1rem;
}
.sidebar .sidebar-heading {
  text-align: left;
  padding: 0 1rem;
  font-weight: 800;
  font-size: 0.65rem;
}
.sidebar .sidebar-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.875rem;
  border-radius: 0.35rem;
  color: rgba(255, 255, 255, 0.8);
  margin-left: 1rem;
  margin-right: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.1);
}
.sidebar .sidebar-card .sidebar-card-illustration {
  height: 3rem;
  display: block;
}
.sidebar .sidebar-card .sidebar-card-title {
  font-weight: bold;
}
.sidebar .sidebar-card p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1019.99px) {
  .sidebar {
    display: none;
    position: fixed;
    z-index: 1000;
    box-shadow: 0 2px 3px 3px rgba(0, 0, 0, 0.0588235294);
  }
  .sidebar.show {
    display: block;
    transform: translateX(0);
  }
  #toggleSidebar {
    display: inline-block;
  }
}
@media (min-width: 1020px) {
  .sidebar {
    position: sticky;
    transform: none !important;
  }
}
@-webkit-keyframes growIn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes growIn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.navbar {
  background: #f6f8f9 !important;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.031372549);
  padding: 1rem 1.2rem;
}

.menu-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #0b2746;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

@media (min-width: 1020px) {
  .menu-btn {
    display: none;
  }
}
:root {
  direction: rtl;
  text-align: center;
}

body {
  background: #f6f8f9;
  font-size: 16px;
  font-family: "Noto Kufi Arabic", sans-serif;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: #0b2746;
  white-space: nowrap;
}

select {
  cursor: pointer;
  text-align: center;
}
select:focus {
  box-shadow: none !important;
}

.content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0;
}
.content .cont {
  width: 100%;
  transition: with 300ms ease-in-out;
}

.modal .modal-dialog.big {
  min-width: 80% !important;
}
.modal .modal-content {
  background: #ffffff;
  border-radius: 1rem;
}
.modal .modal-content .modal-header {
  display: flex;
  justify-content: space-between;
  direction: ltr;
  border: 0;
}
.modal .modal-content .modal-header .title {
  font-size: 20px;
  font-weight: bold;
}
.modal .modal-content .modal-header .close-btn {
  background: none;
  border: none;
  opacity: 60%;
  transition: all 0.2s ease-in-out;
}
.modal .modal-content .modal-header .close-btn:hover {
  opacity: 100%;
}
.modal .modal-content .modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.modal .modal-content .modal-body svg {
  max-height: 185px;
}
.modal .modal-content .modal-body .modal-message {
  font-size: 16px;
  font-weight: bold;
}
.modal .modal-content .modal-footer {
  border: none;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.modal .modal-content .modal-footer .btn {
  width: 45%;
}

.modal-img {
  width: 90px;
  height: 70px;
  object-fit: cover;
  border-radius: 1rem;
  cursor: pointer;
}

/* breadcrumb */
.breadcrumb {
  color: #64748b;
  padding: 1rem 0;
  margin-bottom: 0;
}
.breadcrumb .current {
  color: #0b2746;
}
.breadcrumb .child::before,
.breadcrumb .current::before {
  content: "";
  display: inline-block;
  width: 0.4em;
  height: 0.4em;
  margin: 0 0.5em;
  vertical-align: middle;
  background: #64748b;
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
}

/* heading */
.heading {
  min-height: 82px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.heading .title {
  font-size: 24px;
}

/* table */
.table-container {
  background: #ffffff;
  padding: 2rem;
  margin: 1rem 0;
  border-radius: 1rem;
}
.table-container .right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.table-container .right span {
  color: #64748b;
  font-size: 14px;
}
.table-container .left {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 1.5rem;
}
.table-container .left span {
  color: #64748b;
  font-size: 14px;
}
.table-container .left svg {
  cursor: pointer;
}
.table-container select {
  width: max-content;
  display: inline;
  background: none;
  border: thin solid #eaeaea;
  border-radius: 1rem;
  padding: 0.5rem 1rem;
}
.table-container .search {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 0.5rem 1rem;
  border: thin solid #eaeaea;
  border-radius: 1rem;
}
.table-container .search input {
  border: none;
  outline: none;
}
.table-container .search .btn {
  min-width: unset;
  padding: 0.75rem 1.25rem !important;
}
.table-container .box {
  overflow: auto;
  padding: 1rem 0;
  margin-bottom: 1rem;
  scrollbar-color: #e1effd #ffffff;
}
.table-container .box::-webkit-scrollbar {
  height: 8px;
}
.table-container .box::-webkit-scrollbar-track {
  background: #e1effd;
  border-radius: 4px;
}
.table-container .box::-webkit-scrollbar-thumb {
  background: #e1effd;
  border-radius: 4px;
}
.table-container .box::-webkit-scrollbar-thumb:hover {
  background: #e1effd;
}
.table-container .box table {
  min-width: 100%;
  font-size: 14px;
}
.table-container .box table thead th {
  white-space: nowrap;
  background: #f4f8fb;
  border: thin solid #eaeaea;
  padding: 1rem;
}
.table-container .box table thead th.min-200 {
  min-width: 200px;
}
.table-container .box table tbody td {
  border: thin solid #eaeaea;
  padding: 1rem;
  color: #606060;
}
.table-container .box table tbody td.min-200 {
  min-width: 200px;
}
.table-container .box table tbody td.group-bg {
  background: #f9fafb;
  font-weight: bold;
}
.table-container .box table tbody td.header-bg {
  background: #f4f8fb;
  font-weight: bold;
  color: #0b2746;
}
.table-container .box table tbody td img {
  cursor: pointer;
}
.table-container .box table tbody td .action-icon {
  text-decoration: none;
}
.table-container .box table tbody td {
  padding: 1rem;
}
.table-container .box table tbody td .d-flex {
  justify-content: center;
  gap: 1rem;
}
.table-container .pagination-container {
  margin-top: 1rem;
}
.table-container .pagination-container .pagination .item {
  padding: 0.5rem 1rem;
  color: #0b2746;
  text-decoration: none;
  font-size: 14px;
  border-radius: 5px;
}
.table-container .pagination-container .pagination .item.active {
  color: #0a6fc2;
  border: thin solid #eaeaea;
}
.table-container .pagination-container .pagination .item.disabled {
  color: #64748b;
  cursor: not-allowed;
}
.table-container .pagination-container .pagination .item.prev {
  padding-right: 0;
}
.table-container .pagination-container .pagination .item.next {
  padding-left: 0;
}
.table-container .pagination-container .pagination .item.prev::before {
  content: "";
  display: inline-block;
  width: 0.4em;
  height: 0.4em;
  margin: 0 0.5em;
  vertical-align: middle;
  background: #0b2746;
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
}
.table-container .pagination-container .pagination .item.next::after {
  content: "";
  display: inline-block;
  width: 0.4em;
  height: 0.4em;
  margin: 0 0.5em;
  vertical-align: middle;
  background: #0b2746;
  clip-path: polygon(100% 0%, 0% 50%, 100% 100%);
}
.table-container .pagination-container .pagination .item.disabled::before, .table-container .pagination-container .pagination .item.disabled::after {
  background: #64748b;
}

.rounded {
  border-radius: 1rem !important;
}

.modal-section {
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 14px;
}
.modal-section .title {
  text-align: start;
  font-size: 16px;
  font-weight: bold;
}
.modal-section .modal-details {
  align-items: center;
}
.modal-section .modal-details .image {
  width: 100%;
  max-width: 180px;
}
.modal-section .box {
  overflow: auto;
  margin-bottom: 1rem;
  scrollbar-color: #e1effd #ffffff;
}
.modal-section .box::-webkit-scrollbar {
  height: 8px;
}
.modal-section .box::-webkit-scrollbar-track {
  background: #e1effd;
  border-radius: 4px;
}
.modal-section .box::-webkit-scrollbar-thumb {
  background: #e1effd;
  border-radius: 4px;
}
.modal-section .box::-webkit-scrollbar-thumb:hover {
  background: #e1effd;
}
.modal-section .box table {
  min-width: 100%;
  font-size: 14px;
}
.modal-section .box table thead th {
  white-space: nowrap;
  background: #f4f8fb;
  border: thin solid #eaeaea;
  padding: 1rem;
}
.modal-section .box table thead th.min-200 {
  min-width: 200px;
}
.modal-section .box table tbody td {
  border: thin solid #eaeaea;
  padding: 1rem;
  color: #606060;
}
.modal-section .box table tbody td.min-200 {
  min-width: 200px;
}
.modal-section .box table tbody td.group-bg {
  background: #f9fafb;
  font-weight: bold;
}
.modal-section .box table tbody td.header-bg {
  background: #f4f8fb;
  font-weight: bold;
  color: #0b2746;
}
.modal-section .box table tbody td img {
  cursor: pointer;
}
.modal-section .box table tbody td .action-icon {
  text-decoration: none;
}

.row-table {
  width: 100%;
}
.row-table.nested:first-child .header:first-child {
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
  border-bottom-right-radius: 0;
}
.row-table.nested:first-child .data:last-child {
  border-top-left-radius: 0;
  border-bottom-right-radius: 1rem;
}
.row-table.nested .header:first-child {
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
  border-bottom-right-radius: 0;
}
.row-table.nested .data:last-child {
  border-top-left-radius: 0;
  border-bottom-right-radius: 1rem;
}
.row-table .header,
.row-table .data {
  display: flex;
  align-items: center;
  padding: 1rem;
  border: thin solid #eaeaea;
  text-align: start;
}
.row-table .header {
  background-color: #f4f8fb;
  font-weight: bold;
}
.row-table .data {
  background-color: #ffffff;
}
.row-table .data .attachment {
  max-width: 100%;
  border-radius: 1rem;
  cursor: pointer;
}
.row-table .data .nested-content {
  width: 100%;
  padding: 1rem 0;
}

.modal-taps {
  width: 100%;
  display: flex;
  overflow-x: auto;
  scrollbar-color: #e1effd #ffffff;
  padding: 0.5rem 0 0.8rem;
  font-size: 14px;
}
.modal-taps::-webkit-scrollbar {
  height: 8px;
}
.modal-taps::-webkit-scrollbar-track {
  background: #e1effd;
  border-radius: 4px;
}
.modal-taps::-webkit-scrollbar-thumb {
  background: #e1effd;
  border-radius: 4px;
}
.modal-taps::-webkit-scrollbar-thumb:hover {
  background: #e1effd;
}
.modal-taps .tap {
  min-width: fit-content;
  padding: 0.25rem 1rem;
  margin: 0 0.25rem;
  border-bottom: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
}
.modal-taps .tap svg {
  fill: #64748b;
  height: 20px;
}
.modal-taps .tap span {
  color: #64748b;
  padding: 0 0.25rem;
}
.modal-taps .tap:hover, .modal-taps .tap.active {
  border-color: #0a6fc2;
}
.modal-taps .tap:hover svg, .modal-taps .tap.active svg {
  fill: #0a6fc2;
}
.modal-taps .tap:hover span, .modal-taps .tap.active span {
  color: #0a6fc2;
}

.file-to-download {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border: thin solid #eaeaea;
  padding: 1rem;
  border-radius: 1rem;
}
.file-to-download .file {
  display: flex;
  gap: 0.5rem;
}
.file-to-download .file img {
  width: 50px;
}
.file-to-download .file .details {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: start;
}
.file-to-download .file .details .file-name {
  font-weight: bold;
}
.file-to-download .download-icon {
  text-decoration: none;
  color: #0b2746;
}
.file-to-download .download-icon img {
  width: 24px;
}

.dropdown-actions {
  width: 200px;
  top: 105%;
  left: 0;
  position: absolute;
  background: #ffffff;
  border-radius: 1rem;
  border: thin solid #eaeaea;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.0588235294);
  padding: 0.5rem;
  z-index: 9999;
}
.dropdown-actions .actions {
  text-align: start;
}
.dropdown-actions .actions .action-icon {
  display: block;
  padding: 0.75rem;
  border-radius: 0.75rem;
}
.dropdown-actions .actions .action-icon:hover {
  background: #e1effd;
}
.dropdown-actions .actions .action-icon:last-child {
  border-bottom: none;
}

.toggler-dropdown {
  width: 200px;
  border: thin solid #eaeaea;
  border-radius: 0.5rem;
  background: #f4f8fb;
}
.toggler-dropdown .toggler {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 1rem;
}
.toggler-dropdown .collapse,
.toggler-dropdown .collapsing {
  background: #ffffff;
  padding: 0.75rem;
}

.leaflet-map {
  width: 100%;
  height: 600px;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
}

/* status colors */
.status-primary {
  background: rgba(0, 112, 204, 0.1019607843);
  color: #0a6fc2;
}

.status-success {
  background: rgba(31, 193, 107, 0.1019607843);
  color: #1a9f58;
}

.status-danger {
  background: rgba(250, 16, 36, 0.1019607843);
  color: #dd0417;
}

.status-info {
  background: rgba(23, 162, 184, 0.1019607843);
  color: #117a8b;
}

.status-warning {
  background: rgba(242, 150, 12, 0.1019607843);
  color: #a96908;
}

.status-dark {
  background: rgba(52, 58, 64, 0.1019607843);
  color: #1d2124;
}

.status-light {
  background: rgba(248, 249, 250, 0.1019607843);
  color: #818182;
}

.bg-secondary-light {
  background: #ededed !important;
}

/* iconpicker */
.iconpicker-container {
  width: 100% !important;
  height: 50px !important;
}
.iconpicker-container .icon-preview {
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 0.5rem 1rem;
  border: thin solid #eaeaea;
  border-radius: 0.75rem;
}
.iconpicker-container .iconpicker-popover {
  min-width: 425px;
}

.emp-details .row-table .header {
  background-color: #f8f9fa;
  font-weight: bold;
  padding: 1rem;
  border: 1px solid #dee2e6;
}
.emp-details .row-table .data {
  background-color: #ffffff;
  padding: 1rem;
  border: 1px solid #dee2e6;
}

.card {
  box-shadow: none;
  border-radius: 16px;
  border: none;
  padding: 0.8rem;
  margin: 1rem 0;
}
.card.custom-card {
  border: thin solid #eaeaea;
  margin: 1.5rem 0;
}
.card.custom-card .card-header {
  background: #ffffff;
  border-bottom: thin solid #eaeaea;
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
  padding: 1.25rem 1rem;
}

.tox-statusbar__branding {
  display: none !important;
}

.text-muted {
  color: #8e8e8e !important;
}

#ui-datepicker-div {
  z-index: 999999 !important;
}

.actions .btn {
  min-width: fit-content;
  border: none;
}

.list-disc {
  list-style: disc;
  padding-right: 20px;
}

.font-18 {
  font-size: 18px;
}

.radius-20 {
  border-radius: 20px;
}

.card-border {
  border: 1px solid #eaeaea;
}

.ltr {
  direction: ltr;
}

.text-gray {
  color: #606060;
}

.actions-dropdown {
  box-shadow: rgba(10, 111, 194, 0.08) 0px 10px 20px -2px, rgba(10, 111, 194, 0.08) 0px 4px 9px -5px;
  background: white;
  padding: 15px 12px;
  border-radius: 8px;
  position: absolute;
  top: 47px;
  border: 1px solid #eaeaea;
  width: 200px;
  z-index: 1000;
  display: none;
}

.actions-dropdown.po-right {
  left: auto;
  right: 0;
  top: 38.5px;
}

.actions-dropdown.po-left {
  right: auto;
  left: 0px;
}

.actions-dropdown ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.actions-dropdown ul li,
.actions-dropdown ul li a {
  padding: 0px;
  text-align: right;
  font-size: 15px;
  width: 100%;
  display: block;
}

.actions-dropdown ul li hr {
  margin: 0;
  border-color: #eaeaea;
  opacity: 1;
}

.custom-action-dropdown:hover .actions-dropdown {
  display: block;
}

.custom-action-dropdown {
  position: relative;
}

.btn-primary-outline.dropdown-toggle-btn .arrow-down {
  fill: rgb(10, 111, 194);
}

.select-arrow-box {
  position: relative;
}
.select-arrow-box select {
  padding-left: 30px;
  text-align: right;
}
.select-arrow-box::after {
  position: absolute;
  content: url("../images/icons/select_arrow.png");
  top: 45%;
  left: 13px;
  transform: translateY(-50%);
}

.btn-light .arrow-down {
  fill: black;
}

.extended-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.extended-status i {
  font-size: 1rem;
  -webkit-text-stroke: 1px;
}

.extended-status.status-approved {
  background-color: rgba(0, 112, 204, 0.1019607843);
}
.extended-status.status-approved .text {
  color: #0A6FC2;
}
.extended-status.status-approved i {
  color: #0C4A80;
}

.extended-status.status-pending-approval {
  background-color: rgba(242, 150, 12, 0.1019607843);
}
.extended-status.status-pending-approval .text,
.extended-status.status-pending-approval i {
  color: #A96908;
}

.extended-status.status-completed {
  background-color: rgba(31, 193, 107, 0.1019607843);
}
.extended-status.status-completed .text,
.extended-status.status-completed i {
  color: #1A9F58;
}

.extended-status.status-rejected-with-note {
  background-color: rgba(207, 180, 26, 0.1019607843);
}
.extended-status.status-rejected-with-note .text,
.extended-status.status-rejected-with-note i {
  color: #CFB41A;
}

.extended-status.status-rejected {
  background-color: rgba(250, 16, 36, 0.1019607843);
}
.extended-status.status-rejected .text,
.extended-status.status-rejected i {
  color: #DD0417;
}

.icon-saudi_riyal {
  line-height: 1;
}

.popover-body {
  font-family: "Cairo", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #0b2746;
}

.bg-none {
  background: none;
}

@media (max-width: 500px) {
  /* iconpicker */
  .iconpicker-container .iconpicker-popover {
    min-width: 350px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
  .modal .modal-dialog.big {
    min-width: 95% !important;
  }
  .modal .modal-content .modal-body svg {
    max-height: 135px;
  }
  .modal .modal-content .modal-body .modal-message {
    font-size: 14px;
  }
  .heading .title {
    font-size: 18px;
  }
  .table-container .search {
    margin: 1rem 0;
  }
}
@media (max-width: 991.99px) {
  .row-table:first-child .header:first-child {
    border-top-right-radius: 1rem !important;
    border-top-left-radius: 0;
  }
  .row-table:first-child .data {
    border-top-right-radius: 0;
    border-top-left-radius: 1rem;
  }
  .row-table:first-child .data:last-child.col-lg-3 {
    border-radius: 0;
  }
  .row-table:last-child .header {
    border-bottom-right-radius: 1rem;
    border-bottom-left-radius: 0;
  }
  .row-table:last-child .header:first-child {
    border-radius: 0;
  }
  .row-table:last-child .header:only-of-type {
    border-bottom-right-radius: 1rem;
    border-bottom-left-radius: 0;
  }
  .row-table:last-child .data:last-child {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 1rem !important;
  }
  .row-table.nested:first-child .row-table .header,
  .row-table.nested:first-child .row-table .data {
    border-radius: 0;
  }
  .row-table.nested:first-child .row-table:first-child .header:first-child {
    border-top-right-radius: 1rem !important;
    border-top-left-radius: 0;
  }
  .row-table.nested:first-child .row-table:first-child .data {
    border-top-right-radius: 0;
    border-top-left-radius: 1rem;
  }
  .row-table.nested:first-child .row-table:first-child .data:last-child.col-lg-3 {
    border-radius: 0;
  }
  .row-table.nested:first-child .row-table:last-child .header {
    border-bottom-right-radius: 1rem;
    border-bottom-left-radius: 0;
  }
  .row-table.nested:first-child .row-table:last-child .header:first-child {
    border-radius: 0;
  }
  .row-table.nested:first-child .row-table:last-child .header:only-of-type {
    border-bottom-right-radius: 1rem;
    border-bottom-left-radius: 0;
  }
  .row-table.nested:first-child .row-table:last-child .data:last-child {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 1rem !important;
  }
}
@media (min-width: 992px) {
  .row-table:first-child .header:first-child {
    border-top-right-radius: 1rem;
    border-top-left-radius: 0;
  }
  .row-table:first-child .data:last-child {
    border-top-right-radius: 0;
    border-top-left-radius: 1rem;
  }
  .row-table:last-child .header:first-child {
    border-bottom-right-radius: 1rem;
    border-bottom-left-radius: 0;
  }
  .row-table:last-child .data:last-child {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 1rem;
  }
  .row-table.nested:first-child .row-table .header,
  .row-table.nested:first-child .row-table .data {
    border-radius: 0;
  }
  .row-table.nested:first-child .row-table:first-child .header:first-child {
    border-top-right-radius: 1rem;
    border-top-left-radius: 0;
  }
  .row-table.nested:first-child .row-table:first-child .data:last-child {
    border-top-right-radius: 0;
    border-top-left-radius: 1rem;
  }
  .row-table.nested:first-child .row-table:last-child .header:first-child {
    border-bottom-right-radius: 1rem;
    border-bottom-left-radius: 0;
  }
  .row-table.nested:first-child .row-table:last-child .data:last-child {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 1rem;
  }
}
@media (max-width: 1019.99px) {
  .cont {
    position: relative;
    z-index: 0;
  }
}
@media (min-width: 1020px) {
  .cont {
    max-width: calc(100% - 320px);
  }
}
.stepper {
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  scrollbar-color: #e1effd #ffffff;
  margin: 2rem 0;
}
.stepper::-webkit-scrollbar {
  height: 8px;
}
.stepper::-webkit-scrollbar-track {
  background: #e1effd;
  border-radius: 4px;
}
.stepper::-webkit-scrollbar-thumb {
  background: #e1effd;
  border-radius: 4px;
}
.stepper::-webkit-scrollbar-thumb:hover {
  background: #e1effd;
}
.stepper .step {
  background: white;
  z-index: 1;
  text-align: center;
  flex: 1;
  position: relative;
  color: #606060;
}
.stepper .step::before {
  content: "";
  position: absolute;
  top: 25px;
  right: -1px;
  height: 7px;
  background: #EDEDED;
  width: 50%;
  z-index: -1;
}
.stepper .step::after {
  content: "";
  position: absolute;
  top: 25px;
  right: 50%;
  height: 7px;
  background: #EDEDED;
  width: 50%;
  z-index: -1;
}
.stepper .step:first-of-type::before {
  content: unset;
}
.stepper .step:last-of-type::after {
  content: unset;
}
.stepper .step.active::before {
  background: #1A9F58;
}
.stepper .step.complete::after, .stepper .step.complete::before {
  background: #1A9F58;
}
.stepper .step .icon {
  width: 50px;
  height: 50px;
  line-height: 40px;
  border-radius: 50%;
  background: #e0e0e0;
  margin: auto;
  font-size: 18px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 7px;
}
.stepper .step.active .icon {
  background: #0a6fc2;
}
.stepper .step.complete .icon {
  background: #1A9F58;
}
.stepper .step.active .icon svg, .stepper .step.complete .icon svg {
  fill: #ffffff;
}
.stepper .step span {
  font-weight: bold;
  margin-top: 16px;
  display: block;
}
.stepper .step.active span {
  color: #0a6fc2;
}
.stepper .step.complete span {
  color: #1A9F58;
}

.calenderStepper {
  position: relative;
  margin-bottom: 2rem;
}
.calenderStepper .steps {
  max-width: 100%;
  overflow: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  scrollbar-color: #e1effd #ffffff;
}
.calenderStepper .steps::-webkit-scrollbar {
  height: 8px;
}
.calenderStepper .steps::-webkit-scrollbar-track {
  background: #e1effd;
  border-radius: 4px;
}
.calenderStepper .steps::-webkit-scrollbar-thumb {
  background: #e1effd;
  border-radius: 4px;
}
.calenderStepper .steps::-webkit-scrollbar-thumb:hover {
  background: #e1effd;
}
.calenderStepper .steps .step {
  width: 100px;
  background: #ffffff;
  z-index: 1;
  position: relative;
  color: #0b2746;
}
.calenderStepper .steps .step::after {
  content: "";
  position: absolute;
  top: 50px;
  right: 50%;
  height: 7px;
  background: #EDEDED;
  width: 220%;
  z-index: -1;
}
.calenderStepper .steps .step:last-of-type::after {
  content: unset;
}
.calenderStepper .steps .step .icon {
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 50%;
  background: #ffffff;
  border: thin solid #EAEAEA;
  margin: auto;
  font-size: 18px;
  cursor: pointer;
}
.calenderStepper .steps .step.active .icon {
  background: #0a6fc2;
}
.calenderStepper .steps .step.active .icon svg path {
  stroke: #ffffff;
}
.calenderStepper .steps .step span {
  font-weight: bold;
  display: block;
}
.calenderStepper .steps .step.active span {
  color: #ffffff;
}
.calenderStepper .details {
  position: relative;
  background: #e1effd;
  border-radius: 1rem;
  padding: 1rem 2rem;
  margin-top: 1rem;
}
.calenderStepper .details::before {
  content: "";
  position: absolute;
  top: -12px;
  left: var(--chevron-left, 0);
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 12px solid #e1effd;
}
.calenderStepper .details ul {
  text-align: start;
  list-style-type: disc;
  color: #0a6fc2;
}
.calenderStepper .navigation {
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0;
}

.custom-form {
  text-align: start;
  width: 100%;
}
.custom-form .form-label {
  color: #0b2746;
  font-weight: 600;
  font-size: 15px;
}
.custom-form .form-control {
  width: 100%;
  border: 1px solid #EAEAEA;
  background-color: #FFFFFF;
  padding: 12px 20px;
  border-radius: 16px;
  text-align: start;
  direction: rtl;
}
.custom-form .form-control:focus {
  border-color: #0a6fc2;
  box-shadow: none;
}
.custom-form .form-control::placeholder {
  color: #8E8E8E;
}
.custom-form .form-control.is_invalid {
  border-color: #dc3545;
  background-image: none;
}
.custom-form .validation-error-text {
  color: #dc3545;
  margin-top: 5px;
  font-size: 17px;
}
.custom-form .form-check .form-check-input {
  width: 20px;
  height: 20px;
  margin-left: 8px;
}
.custom-form .form-check .form-check-label {
  vertical-align: text-bottom;
}
.custom-form .date-input-box, .custom-form .time-input-box {
  position: relative;
}
.custom-form .date-input-box svg, .custom-form .time-input-box svg {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  cursor: pointer;
}
.custom-form .form-title {
  color: #0b2746;
  font-size: 18px;
}
.custom-form .avatar-box .profile-pic-wrapper {
  position: relative;
  width: 150px;
  height: 150px;
  margin: auto;
}
.custom-form .avatar-box .profile-pic-wrapper .profile-pic {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #0a6fc2;
  object-fit: cover;
  background-color: #f1f1f1;
}
.custom-form .avatar-box .profile-pic-wrapper .profile-pic.is_invalid {
  border: 3px solid #dc3545;
  background-image: none;
}
.custom-form .avatar-box .profile-pic-wrapper .edit-icon {
  position: absolute;
  bottom: 3px;
  right: 3px;
  background-color: #0a6fc2;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: 2px solid #ffffff;
}
.custom-form .avatar-box .profile-pic-wrapper .edit-icon input[type=file] {
  display: none;
}
.custom-form .upload-box .upload-box-content {
  background: rgba(0, 112, 204, 0.1019607843);
  border: 2px dashed rgba(10, 111, 194, 0.5882352941);
  border-radius: 20px;
  text-align: center;
  position: relative;
  padding: 40px 30px;
  min-height: 230px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.custom-form .upload-box .upload-box-content.is_invalid {
  border: 2px dashed #dc3545;
  background-image: none;
}
.custom-form .upload-box .upload-box-content .upload-preview .img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.custom-form .upload-box .upload-box-content .upload-preview .img-box .box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.custom-form .upload-box .upload-box-content .upload-preview .img-box .box.active {
  width: 150px;
  height: 130px;
}
.custom-form .upload-box .upload-box-content .upload-preview .img-box .box.active img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
.custom-form .upload-box .upload-box-content .upload-preview .files-preview .preview-item {
  color: #777777;
  font-size: 16px;
}
.custom-form .upload-box .upload-box-content .upload-preview .trigger-file-box {
  color: #777777;
  font-size: 16px;
}
.custom-form .upload-box .upload-box-content .upload-preview .trigger-file-box a {
  color: #0a6fc2;
  font-weight: 600;
  text-decoration: none;
}
.custom-form .upload-box .upload-box-content .upload-preview small {
  color: #777777;
  font-size: 16px;
}
.custom-form .upload-box .files-preview-box .item {
  border: 1px solid #EAEAEA;
  border-radius: 16px;
  margin-top: 16px;
  padding: 16px;
}
.custom-form .upload-box .preview-item {
  display: inline-block;
  margin: 5px;
}
.custom-form .bank-accounts .box {
  display: flex;
  gap: 20px;
}
.custom-form .bank-accounts .box .item {
  flex: 1;
}
.custom-form .bank-accounts .box .add-bank-account-btn {
  background-color: #0a6fc2;
  border-radius: 10px;
  width: 50px;
  padding: 0;
  min-width: 50px;
  height: 50px;
  align-self: end;
}
.custom-form .bank-accounts .box.validation-error .add-bank-account-btn {
  align-self: center;
}
.custom-form .bank-accounts .box .delete-bank-account-btn {
  background-color: #FEF2F2;
  width: 50px;
  height: 50px;
  padding: 0;
  min-width: 50px;
  border-radius: 50%;
  align-self: end;
  border: none;
}
.custom-form .dynamic-inputs .box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.custom-form .dynamic-inputs .box .item {
  flex: 1;
}
.custom-form .dynamic-inputs .box .add-dynamic-input-btn {
  background-color: #0a6fc2;
  border-radius: 50%;
  width: 50px;
  padding: 0;
  min-width: 50px;
  height: 50px;
  align-self: end;
}
.custom-form .dynamic-inputs .box.validation-error .add-dynamic-input-btn {
  align-self: center;
}
.custom-form .dynamic-inputs .box .delete-dynamic-input-btn {
  background-color: #FEF2F2;
  width: 50px;
  height: 50px;
  padding: 0;
  min-width: 50px;
  border-radius: 50%;
  align-self: end;
  border: none;
}
.custom-form .form-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
}
.custom-form .form-actions .btn {
  font-size: 17px;
  padding-block: 10px;
  min-width: 120px;
}
.custom-form .table-preview {
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #EAEAEA;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 0;
}
.custom-form .table-preview tr:first-child td:first-child {
  border-top-right-radius: 15px;
}
.custom-form .table-preview tr:first-child td:last-child {
  border-top-left-radius: 15px;
}
.custom-form .table-preview tr:last-child td:first-child {
  border-bottom-right-radius: 15px;
}
.custom-form .table-preview tr:last-child td:last-child {
  border-bottom-left-radius: 15px;
}
.custom-form .table-preview tr td {
  border: 1px solid #EAEAEA;
  padding: 12px 20px;
}
.custom-form .table-preview tr td.bg-light {
  background-color: #F4F8FB !important;
  font-size: 15px;
}
.custom-form .select2-container--bootstrap-5 .select2-selection {
  border: 1px solid #EAEAEA;
  background-color: #FFFFFF;
  min-height: 50px;
  border-radius: 16px;
  text-align: start;
  direction: rtl;
  padding: 6px 20px;
}
.custom-form .select2-container--bootstrap-5 .select2-selection .select2-selection__placeholder {
  text-align: right;
  color: #8E8E8E;
  line-height: 38px;
}
.custom-form .select2-container--bootstrap-5 .select2-selection .select2-selection__rendered {
  text-align: right;
  color: #212529;
  line-height: 38px;
}
.custom-form .select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered {
  line-height: 24px;
}
.custom-form .select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice {
  background-color: #E1EFFD;
  border: none;
  border-radius: 7px;
  padding-inline: 16px;
  display: flex;
  flex-direction: row-reverse;
  color: #0b2746;
}
.custom-form .select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove {
  width: 20px;
  height: 20px;
  border: 1px solid #0b2746;
  border-radius: 50%;
  padding: 2px;
  font-size: 10px;
  background: none;
  position: relative;
  margin-left: 0;
  margin-right: 10px;
}
.custom-form .select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove::before {
  position: absolute;
  content: "x";
  color: #0b2746;
  font-size: 15px;
  top: 47%;
  left: 49%;
  transform: translate(50%, -50%);
}
.custom-form .select2-container--bootstrap-5 .select2-selection--multiple .select2-search .select2-search__field {
  line-height: 38px;
  height: 36px;
}
.custom-form .select2-container--bootstrap-5.select2-container--focus .select2-selection, .custom-form .select2-container--bootstrap-5.select2-container--open .select2-selection {
  border-color: #0a6fc2;
  box-shadow: none;
  border-bottom: 1px solid #0a6fc2;
}
.custom-form .select2-container--bootstrap-5 .select2-dropdown {
  text-align: start;
}
.custom-form .form-select2.is_invalid + .select2-container--bootstrap-5 .selection .select2-selection {
  border: 1px solid #dc3545 !important;
}
.custom-form .inline-create-box {
  border: 1px solid #EAEAEA;
  border-radius: 20px;
  padding: 15px;
}
.custom-form .inline-create-box .top-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.custom-form .inline-create-box .top-box .title {
  font-size: 20px;
  font-weight: 700;
}
.custom-form .inline-create-box .top-box .add-btn {
  width: 45px;
  min-width: 45px;
  padding: 10px;
  height: 45px;
  border-radius: 16px;
}
.custom-form .inline-create-box .bottom-box .data .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #F1F8FE;
  padding: 12px 10px;
  border: 1px solid #EAEAEA;
  border-radius: 12px;
  margin-bottom: 10px;
}
.custom-form .inline-create-box .bottom-box .data .box:last-of-type {
  margin-bottom: 0;
}
.custom-form .inline-create-box .bottom-box .data .box .right .work,
.custom-form .inline-create-box .bottom-box .data .box .right .name {
  color: #0b2746;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 5px;
}
.custom-form .inline-create-box .bottom-box .data .box .right .job-name,
.custom-form .inline-create-box .bottom-box .data .box .right .provider {
  color: #606060;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 5px;
}
.custom-form .inline-create-box .bottom-box .data .box .right .date {
  color: #8E8E8E;
  font-weight: 600;
  font-size: 14px;
}
.custom-form .inline-create-box .bottom-box .data .box .left button {
  border: none;
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.custom-form .inline-create-box .bottom-box .data .box .left button.edit-btn {
  background-color: #d1f7e5;
  margin-bottom: 10px;
}
.custom-form .inline-create-box .bottom-box .data .box .left button.delete-btn {
  background-color: #FEF2F2;
}
.custom-form .inline-create-box .bottom-box .data .box .left button svg {
  width: 22px;
}
.custom-form .inline-create-box .bottom-box .no-data {
  text-align: center;
}
.custom-form .inline-create-box .bottom-box .no-data img {
  max-width: 400px;
}
.custom-form .inline-create-box .bottom-box .no-data p {
  color: #606060;
  font-weight: 600;
  font-size: 18px;
}
.custom-form .table-form {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 20px;
  overflow: hidden;
}
.custom-form .table-form thead th {
  background-color: #F4F8FB;
}
.custom-form .table-form thead th:first-child {
  border-top-right-radius: 20px;
}
.custom-form .table-form thead th:last-child {
  border-top-left-radius: 20px;
}
.custom-form .table-form tbody tr:last-child td:first-child {
  border-bottom-right-radius: 20px;
}
.custom-form .table-form tbody tr:last-child td:last-child {
  border-bottom-left-radius: 20px;
}
.custom-form .table-form tr td, .custom-form .table-form tr th {
  padding: 15px 20px;
  border: 1px solid #EAEAEA;
  vertical-align: middle;
}
.custom-form .table-form tr td {
  color: #606060;
}
.custom-form .tox-tinymce {
  border: 1px solid #EAEAEA;
  border-radius: 16px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch input:checked + .slider {
  background-color: #CBE5FB;
}
.switch input:focus + .slider {
  box-shadow: 0 0 1px #CBE5FB;
}
.switch input:checked + .slider:before {
  -webkit-transform: translateX(-26px);
  -ms-transform: translateX(-26px);
  transform: translateX(-26px);
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.switch .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  right: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.switch .slider.round {
  border-radius: 34px;
}
.switch .slider.round:before {
  border-radius: 50%;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field {
  border-color: #EAEAEA;
  text-align: right;
}
.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field:focus {
  border-color: #0a6fc2 !important;
  box-shadow: none !important;
}
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected, .select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-selected=true]:not(.select2-results__option--highlighted) {
  background-color: #0a6fc2;
}

.select2-container {
  max-width: 100%;
  width: 100% !important;
  box-sizing: border-box;
}

.select2-selection__rendered {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.custom-primary-card {
  background: #F1F8FE;
  border-radius: 1rem;
  margin-top: 1rem;
  padding: 1rem;
}
.custom-primary-card .form-label {
  margin-bottom: 0;
  padding: 0 0.5rem;
  font-size: 14px;
}
.custom-primary-card .remove-card {
  background: none;
  border: none;
  cursor: pointer;
}

/*____________ mixin _________________ */
.btn {
  min-width: 100px;
  direction: rtl;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 1rem;
  padding: 0.8rem 1.5rem;
  border: thin solid #eaeaea;
  font-size: 14px;
  cursor: pointer;
  width: fit-content;
  white-space: nowrap;
  transition: all 0.1s ease-in-out;
}

.btn:focus, .btn:active {
  box-shadow: none !important;
}

.btn img {
  width: 18px;
}

.btn-light {
  background: transparent;
  color: #0b2746;
  border: thin solid #f3f4f6;
}

.btn-light:hover {
  background: #f3f4f6;
  border-color: transparent;
}

.btn-primary {
  background: #0a6fc2;
  color: #ffffff;
  border: thin solid transparent;
}

.btn-primary:hover {
  background: rgb(7.5, 83.25, 145.5);
  border-color: transparent;
}

.btn-primary-light {
  background: #e1effd;
  color: #0b2746;
  border: thin solid transparent;
}

.btn-primary-light:hover {
  background: rgb(105.46875, 175.25, 245.03125);
  border-color: transparent;
  color: #ffffff;
}

.btn-primary-outline {
  background: transparent;
  color: #0a6fc2;
  border: thin solid #0a6fc2;
}

.btn-primary-outline:hover {
  background: #0a6fc2;
  border-color: transparent;
  color: #ffffff;
}

.btn-primary-dark-outline {
  background: transparent;
  color: #0a6fc2;
  border: thin solid #0a6fc2;
}

.btn-primary-dark-outline:hover {
  background: #0c4a80;
  border-color: transparent;
  color: #ffffff;
}

.btn-primary-dark-outline:hover svg {
  fill: #fff;
}

.btn-secondary {
  background: #f3f4f6;
  color: #0b2746;
  border: thin solid transparent;
}

.btn-secondary:hover {
  background: rgb(213.8571428571, 217.2857142857, 224.1428571429);
  color: #0b2746;
  border-color: transparent;
}

.btn-secondary-light {
  background: #f9fafb;
  color: #0b2746;
  border: thin solid transparent;
}

.btn-secondary-light:hover {
  background: rgb(172.5, 186.25, 200);
  border-color: transparent;
}

.btn-secondary-outline {
  background: transparent;
  color: #f3f4f6;
  border: thin solid #f3f4f6;
}

.btn-secondary-outline:hover {
  background: #f3f4f6;
  border-color: transparent;
  color: #0b2746;
}

.btn-danger {
  background: #DD0417;
  color: #ffffff;
  border: thin solid transparent;
}

.btn-danger:hover {
  background: rgb(170.9066666667, 3.0933333333, 17.7866666667);
  border-color: transparent;
}

.btn-danger-light {
  background: rgba(255, 63, 51, 0.1019607843);
  color: #0b2746;
  border: thin solid transparent;
}

.btn-danger-light:hover {
  background: rgba(178.5, 10.5, 0, 0.1019607843);
  border-color: transparent;
}

.btn-danger-outline {
  background: transparent;
  color: #DD0417;
  border: thin solid #DD0417;
}

.btn-danger-outline:hover {
  background: #DD0417;
  border-color: transparent;
  color: #ffffff;
}

.btn-success {
  background: #1A9F58;
  color: #ffffff;
  border: thin solid transparent;
}

.btn-success:hover {
  background: rgb(18.8324324324, 115.1675675676, 63.7405405405);
  border-color: transparent;
}

.btn-success-light {
  background: rgba(11, 238, 45, 0.1019607843);
  color: #0b2746;
  border: thin solid transparent;
}

.btn-success-light:hover {
  background: rgba(5.3674698795, 116.1325301205, 21.9578313253, 0.1019607843);
  border-color: transparent;
}

.btn-success-outline {
  background: transparent;
  color: #1A9F58;
  border: thin solid #1A9F58;
}

.btn-success-outline:hover {
  background: #1A9F58;
  border-color: transparent;
  color: #ffffff;
}

.manage-project .top-card .table-box {
  width: 100%;
}
.manage-project .top-card .row-table .header, .manage-project .top-card .row-table .data {
  padding-block: 13px !important;
}
.manage-project .top-card .row-table .data {
  color: #606060;
  font-size: 16px;
}
.manage-project .top-card .row-table .data .status-pending {
  padding: 6px 16px;
  border-radius: 8px;
}
.manage-project .top-card .row-table .data .status-pending span {
  padding-inline: 3px !important;
}
.manage-project .section-large-title {
  color: #0b2746;
  font-weight: 600;
  font-size: 20px;
}
.manage-project .section-small-title {
  color: #0b2746;
  font-weight: 500;
  font-size: 16px;
}
.manage-project .stages .stage {
  background-color: #FFFFFF;
  border: 1px solid #EAEAEA;
  box-shadow: 0 3px 25px 0 rgba(10, 111, 194, 0.0784313725);
  border-radius: 16px;
  padding: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.manage-project .stages .stage .status {
  margin-block: 20px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  color: #0b2746;
}
.manage-project .stages .stage .status .title {
  color: #0b2746;
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  vertical-align: middle;
}
.manage-project .stages .stage .status .circle {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.manage-project .stages .stage .status .circle .percentage {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 23px;
  font-weight: 500;
}
.manage-project .stages .stage .description {
  color: #606060;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  vertical-align: middle;
}
.manage-project .stages.stages2 .stage {
  min-height: 250px;
}
.manage-project .stages.stages2 .stage .top .right .title {
  font-weight: 600;
  font-size: 24px;
  color: #0b2746;
}
.manage-project .stages.stages2 .stage .top .subtitle-box .subtitle {
  font-weight: 700;
  font-size: 11px;
  color: #0b2746;
  text-align: start;
}
.manage-project .stages.stages2 .stage .status {
  margin-block: 20px 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  font-size: 30px;
  font-weight: 500;
  color: #0b2746;
}
.manage-project .stages.stages2 .stage .status.indicator-status {
  justify-content: start;
}
.manage-project .stages.stages2 .stage .status.indicator-status .indicator {
  width: 100px;
  height: 100px;
  gap: 8px;
  border-radius: 50%;
  padding: 8px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #DD0417;
  color: #ffffff;
}
.manage-project #gauge-chart svg text:first-of-type tspan,
.manage-project #gauge-chart svg text:nth-of-type(2) tspan,
.manage-project #gauge-chart2 svg text:first-of-type tspan,
.manage-project #gauge-chart2 svg text:nth-of-type(2) tspan {
  font-family: "Cairo", sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}
.manage-project .calendar-wrapper #custom-toggle-view-original {
  display: none;
}
.manage-project .calendar-wrapper #custom-toggle-view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #09579B;
  color: white;
  border-radius: 30px;
  padding: 2px 3px 2px 2px;
  font-weight: bold;
  font-size: 16px;
  gap: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  user-select: none;
}
.manage-project .calendar-wrapper #custom-toggle-view .arrow {
  font-size: 18px;
  background-color: #0A6FC2;
  width: 35px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.manage-project .calendar-wrapper #custom-toggle-view #viewText {
  min-width: 50px;
  text-align: center;
}
.manage-project .calendar-wrapper #calendar {
  max-width: 100%;
  direction: rtl;
}
.manage-project .calendar-wrapper #calendar .fc-toolbar-chunk {
  position: relative;
  padding-inline: 30px;
}
.manage-project .calendar-wrapper #calendar .fc-toolbar-chunk:first-of-type {
  padding-inline: 0;
}
.manage-project .calendar-wrapper #calendar .fc-toolbar-chunk .fc-next-button,
.manage-project .calendar-wrapper #calendar .fc-toolbar-chunk .fc-prev-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  background-color: #0A6FC2;
  border-color: #0A6FC2;
  height: 28px;
  width: 28px;
  border-radius: 50%;
}
.manage-project .calendar-wrapper #calendar .fc-toolbar-chunk .fc-next-button:active,
.manage-project .calendar-wrapper #calendar .fc-toolbar-chunk .fc-prev-button:active {
  background-color: #0A6FC2;
  border-color: #0A6FC2;
}
.manage-project .calendar-wrapper #calendar .fc-toolbar-chunk .fc-prev-button {
  right: 0;
}
.manage-project .calendar-wrapper #calendar .fc-toolbar-chunk .fc-next-button {
  left: 0;
}
.manage-project .calendar-wrapper #calendar .fc-toolbar-chunk .fc-toolbar-title {
  font-size: 20px;
  margin-inline: 5px;
  width: max-content;
  min-width: 100px;
  text-align: center;
}
.manage-project .calendar-wrapper #calendar .fc-direction-ltr .fc-daygrid-event.fc-event-start,
.manage-project .calendar-wrapper #calendar .fc-direction-rtl .fc-daygrid-event.fc-event-end {
  margin-inline: 4px;
  margin-block: 3px;
  border-radius: 4px;
}
.manage-project .calendar-wrapper #calendar .fc-h-event .fc-event-title-container {
  cursor: pointer;
}
.manage-project .calendar-wrapper #calendar .fc-h-event .fc-event-title {
  position: relative;
  vertical-align: middle;
  left: unset;
  right: 50%;
  transform: translateX(50%);
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  padding-inline: 5px;
}
.manage-project .next-tasks .card .table-container {
  padding: 0;
  margin: 0;
}
.manage-project .next-tasks .card .table-container form .box {
  margin-bottom: 0;
  padding: 0;
}

@media (min-width: 1200px) {
  .manage-project .top-card .table-box {
    width: 80%;
  }
  .col-xl-2_4 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

/*# sourceMappingURL=main.css.map */
