/* start style login  ==
= ====================== */
.login {
  min-height: 100vh;
}

.login .row {
  height: 100%;
  margin: 0;
  background-color: var(--color-white);
}

.form-login {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 30px 90px;
  min-height: 100vh;
}
.form-login form {
  width: 100%;
}

.logo-lgoin {
  width: 100%;
  text-align: center;
}
.logo-lgoin img {
  width: 365px;
}
.title-login {
  padding: 20px 0 30px;
  margin-bottom: 30px;
  border-bottom: 1px dashed #2c3e5028;
}
.title-login h1 {
  margin-bottom: 15px;
}

.ctm-btn {
  background-color: var(--color-second);
  height: 55px;
  border: none;
  color: var(--color-white);
  padding: 13px 20px;
  display: inline-block;
  max-width: 100%;
  min-width: 180px;
  text-align: center;
  font-size: 19px;
  border-radius: 5px;
}

.ctm-btn:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.ctm-btn:disabled {
    background-color: var(--color-primary);
    color: var(--color-white);
  }
.btn-login {
  margin-top: 35px;
}

.bg-login {
  background-image: radial-gradient(
    70.47% 50% at 49.93% 50%,
    #202020 0%,
    #000 100%
  );
  width: 100%;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-login::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background-image: url(../images/flort1.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.bg-login::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -35px;
  width: 200px;
  height: 200px;
  background-image: url(../images/flort2.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
}

.img-login {
  max-width: 40%;
  height: auto;
}
.img-login img {
  max-width: 100%;
  object-fit: contain;
}
/* end style login  ==
= ====================== */

/* start index admin style  ====
========================== */
.main-app {
  display: flex;
  gap: 0;
  min-height: 100vh;
}
.side-bar {
  width: 280px;
  height: 100%;
  top: 0;
  overflow: auto;
  padding: 30px 0 30px;
  right: 0;
  position: fixed;
  background-color: var(--color-primary);
}
.side-bar {
  overflow: hidden;
  transition: all 0.3s linear;
}

.side-bar:hover {
  overflow-y: auto !important;
  transition: all 0.3s linear;
}

.side-bar {
  scrollbar-width: thin;
  transition: all 0.3s linear;
  scrollbar-color: #fff;
}

.side-bar::-webkit-scrollbar-track {
  background: #fff;
  transition: all 0.3s linear;
  border-radius: 100px;
  cursor: pointer;
}

.side-bar::-webkit-scrollbar-thumb {
  background-color: var(--color-second);
  transition: all 0.3s linear;
  cursor: pointer;
  border-radius: 100px;

  border: 0 solid var(--color-second);
}

.side-bar::-webkit-scrollbar {
  width: 7px;
  cursor: pointer;
  transition: all 0.3s linear;
}
.content-app {
  width: calc(100% - 280px);
  position: relative;
  padding: 30px;
  padding-top: 120px;
  margin-right: auto;
}

.top-bar {
  width: calc(100% - 280px);
  position: fixed;
  background-color: var(--color-white);
  top: 0;
  left: 0;
  height: 100px;
  z-index: 500;
  box-shadow: 0 3px 3px #0000002b;
}
.dropdown-menu {
  z-index: 400 !important;
}

/* START side bar  -- --  */

.logo {
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
  height: 91px;
}

.logo img {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

.seach-sidebar-responsive {
  display: none;
}
.side-bar ul {
  display: flex;
  align-items: center;
  gap: 35px;
  flex-wrap: wrap;
  padding: 0px 60px 0 20px;
}

.side-bar ul li {
  width: 100%;
}
.side-bar ul li a {
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s linear;
  font-size: 16px;
  color: var(--color-white);
}
.side-bar ul li a img {
  max-width: 25px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.side-bar ul li a.active {
  color: var(--color-text2);
}

.side-bar ul li a.active img {
  filter: none;
}
.side-bar ul li a:hover {
  color: var(--color-text2);
  transform: translateX(-10px);
}

.side-bar ul li a:hover img {
  filter: none;
}
/* END side bar  -- --  */

/* start top bar --  */

.top-bar {
  display: flex;
  align-items: center;
  padding: 30px;
  justify-content: space-between;
}

.seach-top-bar {
  width: 300px;
  position: relative;
}
.seach-top-bar input {
  height: 45px;
  border-radius: 7px;
  padding-right: 45px;
}
.seach-top-bar::after {
  background-image: url(../images/search-normal.png);
  content: "";
  height: 26px;
  width: 26px;
  position: absolute;
  right: 11px;
  background-repeat: no-repeat;
  top: 10px;
  background-size: contain;
}

.sub-top-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}
.icon-top-par > a {
  width: 45px;
  height: 45px;
  border-radius: 5px;
  position: relative;
  display: flex;
  transition: all 0.4s linear;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
}
.icon-top-par a svg {
  transition: all 0.4s linear;
}

.active-notification {
  background-color: #ff4242;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  position: absolute;
  top: -3px;
  right: -3px;
}

.profile-img {
  width: 40px;
  height: 40px;
}
.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.icon-top-par > a:hover {
  background-color: var(--color-text2);
  color: var(--color-white);
}
.icon-top-par > a:hover path {
  stroke: var(--color-white);
}

.dropdown-menu {
  padding: 0;
}

.dropdown-item {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid #f0f0f0;
}

.dropdown-item.active,
.dropdown-item:active {
  border-bottom: none;
  background-color: transparent !important;
  color: var(--color-primary) !important;
}

.dropdown-menu {
  border-radius: 8px;
  border: 1px solid #f0f0f0;
  background: #fff;
  box-shadow: 5px 5px 6px 0px rgba(0, 0, 0, 0.08);
}

/* END top bar --  */

.banner {
  border-radius: 20px;
  background: #ecddbb;
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 150px;
}

.text-banner {
  padding: 0 35px;
}
.text-banner h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.text-banner p {
  color: #666;
}
.card {
  padding: 25px;
  border-radius: 25px;
  border: none;
  margin: 20px 0px;
}

table.dataTable thead th,
table.dataTable thead td,
table.dataTable tfoot th,
table.dataTable tfoot td {
  text-align: center;
}
table.dataTable thead th:first-child {
  text-align: center;
}
table.dataTable thead th {
  text-align: center;
}

table.dataTable.display > tbody > tr td {
  text-align: center;
}
.sorting_asc,
.sorting_1 {
  text-align: right !important;
}
.sorting::before,
.sorting::after {
  display: none !important;
}

.sorting {
  padding-right: 10px !important;
}

table.dataTable > thead > tr > th,
table.dataTable > thead > tr > td {
  padding: 10px;
  border-bottom: 1px dashed #d1d1d1;
}
.nav-datatable {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.fliter-datatable {
  display: flex;
  align-items: center;
  gap: 30px;
}
.sub-filter-datatable {
  display: flex;
  align-items: center;
  gap: 15px;
}
.input-search-table {
  position: relative;
  max-width: 200px;
}
.input-search-table input {
  height: 45px;
  padding-right: 45px;
  border-radius: 12px;
}

.dataTables_filter,
.dataTables_length {
  display: none;
}
.input-search-table::after {
  background-image: url(../images/search-normal.png);
  content: "";
  height: 24px;
  width: 24px;
  position: absolute;
  right: 12px;
  background-repeat: no-repeat;
  top: 10px;
  background-size: contain;
}

.sub-filter-datatable h4 {
  color: var(--color-text3);
  font-size: 16px;
}

.sub-filter-datatable .dropdown-item {
  font-size: 14px;
  padding: 7px 20px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid #f0f0f0;
}
.sub-filter-datatable .dropdown-menu {
  margin-top: 12px;
}
.dropdown-fliter-datatable > a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
}
.dropdown-fliter-datatable > a:hover {
  color: var(--color-second);
}

.dropdown-fliter-datatable > a i {
  line-height: 0;
}

table.dataTable thead th,
table.dataTable tfoot th {
  font-weight: normal;
  font-size: 16px;
}

table.dataTable thead th {
  color: var(--color-text3);
}
table.dataTable tbody th,
table.dataTable tbody td {
  padding: 17px 10px;
}

table.dataTable.row-border > tbody > tr > th,
table.dataTable.row-border > tbody > tr > td,
table.dataTable.display > tbody > tr > th,
table.dataTable.display > tbody > tr > td {
  border-top: 1px dashed #d1d1d1;
}

table.dataTable.stripe > tbody > tr.odd > *,
table.dataTable.display > tbody > tr.odd > *,
.sorting_1 {
  box-shadow: none !important;
  box-shadow: none !important;
}

table.dataTable.hover > tbody > tr:hover > *,
table.dataTable.display > tbody > tr:hover > * {
  box-shadow: none !important;
  box-shadow: none !important;
}

table.dataTable.no-footer {
  border-bottom: none;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  color: var(--color-primary) !important;
  border-radius: 5;
  font-size: 19px;
  height: 40px;
  border: 1px solid var(--color-border);
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button:active {
  background: var(--color-second);
  color: var(--color-white) !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: var(--color-second) !important;
  border-color: transparent !important;
}

.dataTables_paginate,
.dataTables_paginate span {
  display: flex;
  align-items: center;
  gap: 5px;
}
#myTable_next,
#myTable2_next,
#myTable3_next,
#myTable4_next,
#myTable5_next,
#myTable_previous,
#myTable2_previous,
#myTable3_previous,
#myTable4_previous,
#myTable5_previous {
  position: relative;
  color: transparent !important;
}

a#myTable_next::after,
.paginate_button.next::after {
  content: "";
  width: 16px;
  margin: auto;
  height: 16px;

  background-position: center;
  left: 0;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/arrow-l.png);
  top: 50%;
  transform: translateY(-50%);
  right: 1px;
}
#myTable_previous::after,
.paginate_button.previous::after {
  content: "";
  width: 16px;
  margin: auto;
  height: 16px;
  background-position: center;
  left: 0;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/arrow-l.png);
  top: 50%;
  transform: translateY(-50%) scaleX(-1);
  right: 1px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
  cursor: default;
  color: #666 !important;
  border: 1px solid var(--color-border);
  background: transparent;
  box-shadow: none;
}
a#myTable_next:hover::after,
a#myTable2_next:hover::after,
a#myTable3_next:hover::after,
a#myTable4_next:hover::after,
a#myTable5_next:hover::after {
  filter: brightness(0) invert(1);
}
a#myTable_previous:hover::after,
a#myTable2_previous:hover::after,
a#myTable3_previous:hover::after,
a#myTable4_previous:hover::after,
a#myTable5_previous:hover::after {
  filter: brightness(0) invert(1);
}

.dataTables_wrapper .dataTables_paginate .ellipsis {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  color: var(--color-primary);
  border-radius: 5;
  font-size: 19px;
  height: 40px;
  border: 1px solid var(--color-border);
}
div#myTable_paginate {
  margin-top: 25px;
}

.paid-hawala {
  color: #50cda4 !important;
}
.paid-via-basket {
  color: #006fd0 !important;
}
.unpaid {
  color: #ff3636 !important;
}
.cl-product-orders
{
      color: #50cda4 !important;

}
.cl-manufacturing-orders
{
    color: #c00404 !important;
}
.cl-names-orders
{
        color: #a5845a !important;

}
.cl-maintenance-orders{
            color: #7c6800 !important;

}

.btn-datatable {
  display: inline-block;
  padding: 8px 10px;
  text-align: center;
  font-size: 14px;
  border-radius: 5px;
}
.button-add-new {
  margin-top: 20px;
}
.btn-order-new {
  color: #a5845a;
  background-color: #9a7e4646;
}
.btn-waiting-from-safe {
 color: #00000046;
 background-color: #21aed5;
}
.btn-in-maintenance {
    color: #fff;
    background-color: #dea768;
}

.btn-in-processing {
    color: #FFF;
    background-color: #50cda4;
}
.btn-pick-up-from-the-branch {
    color: #fff;
    background-color: #09b1a0;
}
.btn-finance-audit {
  color: #9567e1;
  background-color: #9667e123;
}

.btn-return-online {
    color: #fff;
    background-color: #ca484c;
}
.btn-in-follow-up-department {
    color: #7c6800;
    background-color: #7c680040;
}
.btn-returned-in-branch {
    color: #c00404;
    background-color: #bc060640;
}

.btn-under-manufacture {
  color: #b79c5d;
  background-color: #fff8dd;
}
.btn-available-now {
  color: #50cda4;
  background-color: #e8fff3;
}
.btn-not-available {
  color: #4c535f;
  background-color: #4c535f3a;
}

.btn-shipped {
    color: #035710;
    background-color: #05bc4682;
}

.btn-pinding {
    color: #2b2b2b;
    background-color: #66666685;
}
.otp-container {
  direction: ltr;
}
.btn-not-delivered {
    color: #cd0808;
    background-color: #f1080857;
}

.btn-delivered {
    color: #09b51d;
    background-color: #03ed1e42;
}
#myTable .dropdown-item {
  padding: 11px 20px;
  font-size: 15px;
}
#myTable .dropdown-item i {
  font-size: 20px;
  line-height: 0;
}

#myTable .dropdown-item .bi-trash {
  color: #ff4242;
}

#myTable .dropdown-item .bi-pencil-square {
  color: #0068b9;
}

.partially-paid {
  color: #9869c0;
}
.btn-waiting-safe {
  background-color: #ec681c25;
  color: #ec671c;
}
.btn-returned {
  color: #e53333;
  background-color: #e533333a;
}

/* start style  admin orders */
.sub-lists-orderos {
  background: var(--color-white);
  padding: 20px;
  border: 1px solid transparent;
  height: 75px;
  display: flex;
  align-items: center;
  transition: all 0.3s linear;
  justify-content: space-between;
  border-radius: 10px;
}
.input-date-datetble {
  position: relative;
  max-width: 180px;
}
.input-date-datetble input {
  height: 45px;
  padding-right: 45px;
  border-radius: 12px;
}

.input-date-datetble::after {
  background-image: url(../images/calendar-search.png);
  content: "";
  height: 24px;
  width: 24px;
  position: absolute;
  right: 12px;
  background-repeat: no-repeat;
  top: 10px;
  background-size: contain;
}

.ui-widget-header {
  border: 1px solid var(--color-second);
  background: var(--color-second);
  color: var(--color-white);
  font-weight: bold;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  filter: brightness(0) invert(1);
  cursor: pointer;
}
.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-prev:focus,
.ui-datepicker .ui-datepicker-next:hover,
.ui-datepicker .ui-datepicker-next:focus {
  background-color: transparent !important;
  border-color: transparent !important  ;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid #fff;
  background: #fff;
  font-weight: normal;
  display: flex;
  color: var(--color-text3);
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 36px;
  height: 36px;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid var(--color-second);
  background: var(--color-second);
  font-weight: normal;
  color: #ffffff;
}

.ui-widget.ui-widget-content {
  border: 1px solid #e0e4ecf3;
}

.order-fliter-datatable {
  gap: 10px;
}
.lists-orders .row .col-lg-3 {
  padding-left: 7px;
  padding-right: 7px;
}
.lists-orders .row {
  row-gap: 10px;
}

.sub-lists-orderos.active,
.sub-lists-orderos:hover {
  border-color: var(--color-second);
}

/* style add new delegates   */

.title-start h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 35px;
  padding: 0 0 15px;
  color: var(--color-second);
}
.title-start h2::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 2px;
  bottom: 0;
  right: 0;
  background-color: var(--color-second);
}

.form-add-delegate {
  width: 50%;
  text-align: center;
  margin: auto;
}

/* start style admin product  */
.product-table {
  display: flex;
  align-items: center;
  gap: 10px;
}
.img-product-table {
  width: 94px;
  height: 80px;
}
.img-product-table img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
}
.text-product-table h2 {
  font-size: 17px;
  margin-bottom: 15px;
}
.text-product-table p {
  color: #8d98aa;
  font-size: 16px;
}

/* start style admin add new product  */

.input-upload-img input {
  width: 0;
  height: 0;
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.input-upload-img label {
  width: 150px;
  height: 150px;
  background-color: #fafbfc;
  border: 1px dashed var(--color-second);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  cursor: pointer;
  text-align: center;
  margin: auto;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

#img-show {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 1;
  right: 0;
  object-fit: cover;
  opacity: 0;
}

#img-show.active {
  opacity: 1;
}

#image-show {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 1;
    right: 0;
    object-fit: cover;
    opacity: 0;
  }

  #image-show.active {
    opacity: 1;
  }

.add-new-img h3 {
  margin-top: 15px;
  font-size: 14px;
  color: #4c535f;
  padding: 5px 10px;
  line-height: 24px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  margin: 0;
  height: 34px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.btn-slide {
  position: absolute;
  cursor: pointer;
  top: 0;
  border: 1px solid var(--color-second);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.btn-slide:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 3px;
  background-color: var(--color-second);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .btn-slide {
  background-color: var(--color-second);
}

input:focus + .btn-slide {
  box-shadow: 0 0 1px var(--color-second);
}

input:checked + .btn-slide:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
  background-color: var(--color-white);
}

.btn-slide.round {
  border-radius: 34px;
}

.btn-slide.round:before {
  border-radius: 50%;
}
.notifications-control p {
  color: var(--color-text);
}
.notifications-control h4 {
  display: flex;
  align-items: center;
  margin-top: 20px;
  justify-content: space-between;
}

/* start style admin report  */
.fliter-Chart {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  justify-content: space-between;
}

.sub-conter-roport {
  border-radius: 20px;
  padding: 20px;
}

.number-conter-roport {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.number-conter-roport h2 {
  color: #939393;
  font-size: 15px;
}
.number-conter-roport h2 span {
  width: 100%;
  display: block;
  font-size: 24px;
  color: var(--color-primary);
  font-family: "font_bold";
  margin-top: 10px;
}

.img-conter-roport {
  max-width: 65px;
  max-height: 65px;
}
.img-conter-roport img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.sub-conter-roport > h3 {
  font-size: 14px;
  margin-top: 20px;
}

.decline,
.climbed {
  color: #ff3636;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.decline i,
.climbed i {
  line-height: 0;
  font-size: 22px;
}

.climbed {
  color: #50cda4;
}

.select-fliter-Chart.arrow-select {
  width: 215px;
}
.links-tabs-report {
  background-color: var(--color-white);
  border-radius: 10px !important;
  display: flex;
  color: var(--color-primary) !important ;
  height: 70px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid transparent;
}
.links-tabs-report.active {
  background-color: var(--color-white) !important;
  color: var(--color-primary) !important ;
  border-color: var(--color-second);
}

.img-tabs-report {
  max-width: 45px;
  max-height: 45px;
}
.img-tabs-report img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* start style notifications  */
.title-notifications {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.detele-notifications button {
  color: var(--color-white);
  font-size: 17px;
  border: none;
  height: 45px;
  padding: 7px 15px;
  border-radius: 7px;
  background-color: #ff3636;
  transition: all 0.2s linear;
}
.detele-notifications button:hover {
  background-color: #d62727;
}

.detele-notifications {
  display: flex;
  align-items: center;
  gap: 5px;
}

.detele-notifications svg {
  filter: brightness(0) invert(1);
}

.sub-notifications > h3 {
  color: var(--color-second);
  font-size: 18px;
}
.select-notification input {
  width: 0;

  height: 0;
  position: absolute;
}
.select-notification {
  position: relative;
  margin: 5px 0 0;
}
.select-notification label {
  width: 23px;
  height: 23px;
  border: 1px solid var(--color-second);
  border-radius: 5px;
  cursor: pointer;
  position: relative;
}
.select-notification input:checked ~ label::after {
  content: "";
  position: absolute;
  cursor: pointer;
  width: 22px;
  height: 22px;
  transition: all 0.16 linear;
  background-color: var(--color-second);
  top: 0;
  right: 0;
  background-image: url(../images/check.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 70%;

  border-radius: 3px;
}
.notification-new {
  padding: 30px 0;
  border-bottom: 1px dashed #d1d1d1;
}

.text-notification-new {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.text-notification-new h2 {
  font-size: 19px;
}
.text-notification-new span {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  color: var(--color-text);
}
.text-notification-new span i {
  color: var(--color-second);
}

.notification-new {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
}

.btn-notification a {
  height: 45px;
  padding: 9px 12px;
  font-size: 17px;
  min-width: 120px;
}
.btn-done {
  color: #146047;
  background-color: #99e4bd;
}

.sub-archives-details ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #8d98aa;
  margin: 15px 0;
}
.sub-archives-details ul li span {
  color: var(--color-primary);
}
.rate {
  direction: ltr;
}
.rate span {
  font-size: 18px;
  color: #d1d1d1 !important;
}
.rate .checked {
  color: var(--color-second) !important;
}

.sub-archives-details p {
  overflow: auto;
  font-size: 16px;
  height: 121px;
  margin-bottom: 10px;
  padding-left: 10px;
}

.sub-archives-details p {
  overflow: hidden;
  transition: all 0.3s linear;
}

.sub-archives-details:hover p {
  overflow-y: auto !important;
  transition: all 0.3s linear;
}

.sub-archives-details p {
  scrollbar-width: thin;
  transition: all 0.3s linear;
  scrollbar-color: #fff;
}

.sub-archives-details p::-webkit-scrollbar-track {
  background: #fff;
  transition: all 0.3s linear;
  border-radius: 100px;
  cursor: pointer;
}

.sub-archives-details p::-webkit-scrollbar-thumb {
  background-color: var(--color-second);
  transition: all 0.3s linear;
  cursor: pointer;
  border-radius: 100px;

  border: 0 solid var(--color-second);
}

.sub-archives-details p::-webkit-scrollbar {
  width: 7px;
  cursor: pointer;
  transition: all 0.3s linear;
}

.notes {
  min-height: 150px;
}

/* upload file  */
.upload-file input {
  width: 0;
  height: 0;
  top: 0;
  opacity: 0;
  position: absolute;
  right: 0;
}

.upload-file label {
  display: flex;
  align-items: center;

  justify-content: space-between;
}
.upload-file p {
  font-size: 15px;
}
.tokenfield {
  height: 52px;
  border-radius: 5px !important;
  padding-right: 20px !important;
  padding-left: 20px !important;

  box-shadow: none !important;
  background-color: #f5f5f559 !important;
  border: 1px solid #e0e4ecf3 !important;
}

.tokenfield .tokenfield-input {
  background: transparent;
  height: 100%;
  width: 100%;
}

.tokenfield {
  height: auto;
  min-height: 155px !important;
  border-radius: 5px !important;
  padding-right: 20px !important;
  padding-left: 20px !important;
  box-shadow: none !important;
  margin-bottom: 100px;
  background-color: #f5f5f559 !important;
  border: 1px solid #e0e4ecf3 !important;
}

.tokenfield .tokenfield-set > ul > li {
  padding: 7px 20px;
  float: right !important;
  background-color: #ececec !important ;
  transition: all 0.3s linear !important;
}

.tokenfield .tokenfield-set > ul > li:hover {
  background-color: var(--color-second) !important;
  color: var(--color-white) !important;
}

.tokenfield .tokenfield-set > ul > li {
  padding: 7px 20px;
  background-color: #ececec !important;
  transition: all 0.3s linear;
  display: flex;
  align-items: center;
  gap: 15px;
}

.item-remove {
  position: relative;
  color: transparent !important;
  width: 25px;
  height: 25px;
}

.item-remove::after {
  content: "";
  position: absolute;
  width: 19px;
  height: 19px;
  top: 50%;
  background-image: url(../images/remove.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  right: 0;
}

.tokenfield .tokenfield-set > ul > li:hover .item-remove::after {
  filter: brightness(0) invert(1);
}
.forget-pass-link {
  text-align: end;
}
.forget-pass-link a {
  color: var(--color-second);
}
.btn-login a {
  width: 100%;
  margin-top: 25px;
  display: block;
  text-align: center;
  color: var(--color-second);
}

.otp-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.otp-container input {
  width: 65px;
  height: 65px;
  border-color: transparent !important;
  text-align: center;
  color: #8e6f38;
  font-size: 22px;
  border-radius: 50%;
  background-color: #f0cfae49;
}

.otp-container input:focus {
  border: 1px solid #8e6f38 !important;
}

.header-create {
  background-image: radial-gradient(
    70.47% 50% at 49.93% 50%,
    #202020 0%,
    #000 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
  position: relative;
  padding-top: 50px;
}

.header-create::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: 0;
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  background-position: top left;
  background-image: url(../images/flort1.png);
}
.form-create-request form {
  width: 80%;
  margin: auto;
}
.header-create::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 180px;
  bottom: 0;
  background-size: contain;
  background-repeat: no-repeat;
  right: -35px;
  background-position: bottom right;
  background-image: url(../images/flort2.png);
}

.title-create-request h2 {
  font-size: 24px;
  margin: 0 0 20px;
  font-family: "font_bold";
}
.title-create-request {
  text-align: center;
}

.title-create-request p {
  display: inline-block;
  padding-bottom: 15px;
  border-bottom: 1px dashed #2c3e503b;
}

.input-radio input {
  width: 0;
  height: 0;
  position: absolute;
  right: 0;
  opacity: 0;
}

.input-radio label {
  padding-right: 30px;
  position: relative;
  cursor: pointer;
}
.input-radio label::after {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 5px;
  border: 1px solid #cab9a7;
}
.input-radio input:checked ~ label::before {
  content: "";
  width: 14px;
  position: absolute;
  right: 3px;
  top: 8px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--color-second);
}

.upload-form input {
  width: 0;
  height: 0;
  position: absolute;
  right: 0;
  opacity: 0;
}
.upload-form label {
  display: flex;
  margin: 40px 0 20px;
  color: var(--color-second);
  font-size: 20px;
  text-decoration: underline;
  cursor: pointer;
}
.upload-form img {
  max-width: 150px;
  max-height: 150px;
}
.price-payment-methods {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
}
.sub-price-payment-methods {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

.sub-price-payment-methods input {
  background-color: transparent;
  border-color: transparent;
  border-bottom: 1px dashed #959595;
}
.sub-price-payment-methods label {
  margin: 0;
}
.sub-payment-methods {
  margin: 20px 0;
}
.send-gift {
  margin: 30px 0;
  padding-top: 30px;
  border-top: 1px solid #d0d0d0;
}
.sub-send-gift {
  margin: 35px 0;
}

.sub-send-gift .input-radio {
  margin: 30px 0;
}

.form-upload input {
  width: 0;
  height: 0;
  position: absolute;
  opacity: 0;
}
.form-upload label {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-send-gift {
  display: none;
}

.input-checked input {
  width: 0;
  height: 0;
  z-index: -1;
  opacity: 0;
  position: absolute;
}

.input-checked label {
  padding-right: 25px;
  display: block;
  position: relative;
  user-select: none;
  cursor: pointer;
}
.input-checked label::after {
  content: "";
  position: absolute;
  width: 20px;
  border-radius: 3px;
  right: 0;
  top: 2px;
  height: 20px;
  border: 1px solid var(--color-second);
}

.input-checked input:checked ~ label::before {
  content: "";
  position: absolute;
  cursor: pointer;
  width: 20px;
  height: 20px;
  transition: all 0.16 linear;
  background-color: var(--color-second);
  top: 2px;
  right: 0;
  background-image: url(../images/check.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 76%;
  border-radius: 3px;
}

.delivery-order {
  padding: 20px;
}

.modal-content {
  border-radius: 20px;
}
.modal-dialog {
  max-width: 60%;
}

.main-delivery-order {
  margin: auto;
  width: 70%;
}

.btn-addnew-product button {
  min-width: auto !important;
}

.btn-addnew-product {
  margin-top: 50px;
}
.btn-delete-product {
  margin-top: 50px;
}
.btn-delete-product button {
  min-width: auto !important;

  background-color: #e53333;
}

/*start edit new */
div#printThis {
    row-gap: 15px;
    margin-top:15px;
}
.sub-archives-details.card {
    height: 100%;
    margin:0 ;
}
.add-new-img.active {
    opacity: 0;
}
.sallesfor-employees .dataTables_wrapper {
    overflow-x: auto;
    padding-bottom: 25px;
}
.sallesfor-employees table#myTable2 {
    width: 150%;
}





.sallesfor-employees .dataTables_wrapper {
  scrollbar-width: thin;
  transition: all 0.3s linear;
  scrollbar-color: #fff;
}

.sallesfor-employees .dataTables_wrapper::-webkit-scrollbar-track {
  background: #fff;
  transition: all 0.3s linear;
  border-radius: 100px;
  cursor: pointer;
}

.sallesfor-employees .dataTables_wrapper::-webkit-scrollbar-thumb {
  background-color: var(--color-second);
  transition: all 0.3s linear;
  cursor: pointer;
  border-radius: 100px;

  border: 0 solid var(--color-second);
}

.sallesfor-employees .dataTables_wrapper::-webkit-scrollbar {
  width: 7px;
  height:7px;
  cursor: pointer;
  transition: all 0.3s linear;
}
.dropdown-fliter-datatable .dropdown-menu {
    max-height: 240px;
    overflow: auto;
}


.dropdown-fliter-datatable .dropdown-menu {
  scrollbar-width: thin;
  transition: all 0.3s linear;
  scrollbar-color: #fff;
}

.dropdown-fliter-datatable .dropdown-menu::-webkit-scrollbar-track {
  background: #fff;
  transition: all 0.3s linear;
  border-radius: 100px;
  cursor: pointer;
}

.dropdown-fliter-datatable .dropdown-menu::-webkit-scrollbar-thumb {
  background-color: var(--color-second);
  transition: all 0.3s linear;
  cursor: pointer;
  border-radius: 100px;

  border: 0 solid var(--color-second);
}

.dropdown-fliter-datatable .dropdown-menu::-webkit-scrollbar {
  width: 7px;
  height:7px;
  cursor: pointer;
  transition: all 0.3s linear;
}

.buttons-group {
    flex-wrap: wrap;
    gap:10px ;
}
.sub-button-group {
    width: 100%;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.productss-table {
    max-width: 150px;
    margin: auto;
}



#today-orders .dataTables_length {
  display: block !important;
}


.f-dropdown {
  --max-scroll: 3;
  position: relative;
  z-index: 10;
}
.f-dropdown select {
  display: none;
}
.f-dropdown > span {
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  position: relative;
  background: #fff;
  transition: color 0.2s ease, border-color 0.2s ease;

    height: 52px;
    border-radius: 5px;
    padding-right: 20px;
    padding-left: 20px;
    background-color: #f5f5f559;
    border: 1px solid #e0e4ecf3;

}
.f-dropdown > span > span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 12px;
}
.f-dropdown > span img {
  width: 30px;
  margin-right: 10px;
}

.f-dropdown > span:before {
  margin-right: 4px;
  transform: scale(0.96, 0.8) rotate(50deg);
}
.f-dropdown > span:after {
  transform: scale(0.96, 0.8) rotate(-50deg);
}
.f-dropdown ul {
  margin: 0;
  padding: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  max-height: calc(var(--max-scroll) * 46px);
  top: 40px;
  left: 0;
  z-index: 1;
  right: 0;
  background: #FFF;
  border: 1px solid #CCC;
  border-radius: 6px;
  overflow-x: hidden;
  overflow-y: auto;
  transform-origin: 0 0;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
  transform: translate(0, 5px);
}
.f-dropdown ul li {
  padding: 0;
  margin: 0;
}
.f-dropdown ul li a {
  cursor: pointer;
  display: block;
  padding: 8px 12px;
  color: #000;
  text-decoration: none;
  outline: none;
  position: relative;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}
.f-dropdown ul li a img {
  width: 30px;
  margin-right: 10px;
}
.f-dropdown ul li a:hover {
  color: #5C6BC0;
}
.f-dropdown ul li.active a {
  color: #FFF;
  background: var(--color-text2);
}
.f-dropdown ul li.active a:before, .f-dropdown ul li.active a:after {
    --scale: 0.6;
    content: "";
    display: block;
    width: 25px;
    height: 2px;
    position: absolute;
    left: 10px;
    top: 50%;
    opacity: 0;
    background: #FFF;
    transition: all 0.2s ease;
}
.f-dropdown ul li.active a:before {
  transform: rotate(45deg) scale(var(--scale));
}
.f-dropdown ul li.active a:after {
  transform: rotate(-45deg) scale(var(--scale));
}
.f-dropdown ul li.active a:hover:before, .f-dropdown ul li.active a:hover:after {
  --scale: 0.9;
  opacity: 1;
}
.f-dropdown ul li:first-child a {
  border-radius: 6px 6px 0 0;
}
.f-dropdown ul li:last-child a {
  border-radius: 0 0 6px 6px;
}
.f-dropdown.disabled {
  opacity: 0.7;
}
.f-dropdown.disabled > span {
  cursor: not-allowed;
}
.f-dropdown.filled > span {
  color: #000;
}
.f-dropdown.open {
  z-index: 15;
}
.f-dropdown.open > span {
  border-color: #AAA;

}
.f-dropdown.open > span:before, .f-dropdown.open > span:after {
  background: #000;
}
.f-dropdown.open > span:before {
  transform: scale(0.96, 0.8) rotate(-50deg);
}
.f-dropdown.open > span:after {
  transform: scale(0.96, 0.8) rotate(50deg);
}
.f-dropdown.open ul {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
}

.f-dropdown ul li a img {
    margin-left: 10px;
    width: 45px;
    object-fit: cover;
    height: 45px;
    border-radius: 5px;
}

.f-dropdown ul li a {
    gap: 10px;
}
.f-dropdown > span img {
    object-fit: cover;
    width: 44px;
    border-radius: 4px;
    height: 40px;
    margin-right: 0;
}


.mune-chat {
    display:none;
}
.main-title-chat {
    display: flex;
    width: 100%;
    justify-content: space-between;
    background: #fff;
    align-items: center;
    padding: 0 0 0 25px;
}