:root {
  /* fonts */
  --font-open-sans: "Lato", sans-serif;
  --light-basic-typography-paragraph-small-semi-bold: "Lato", sans-serif;
  --font-poppins: Poppins;

  /* font sizes */
  --font-size-sm: 13px;
  --light-basic-typography-paragraph-small-semi-bold-size: 13px;
  --font-size-lg: 18px;
  --font-size-mini: 15px;
  --font-size-5xl: 24px;
  --font-size-3xs: 10px;
  --font-size-7xs: 6px;
  --font-size-base: 16px;
  --font-size-32: 32px;

  /* Colors */
  --color-primary: #8F363F;
  --color-bg: #FFF5EF;

  --color-gray-100: #F4F5F7;
  --color-gray-200: #23272e;
  --color-gray-300: rgba(0, 0, 0, 0.1);
  --color-gray-400: rgba(255, 255, 255, 0.2);
  --color-black: #000;
  --light-solid-color-extra-card-background: #fff;
  --color-gainsboro-100: #dbdade;
  --color-gold: #f4b700e8;
  --coomon-button: #5D5C9D;
  --color-darkslateblue: #5d5c9d;
  --color-mediumseagreen: #1eb564;
  --color-dimgray: #FBE9E0;
  --color-whitesmoke: #f5f5f5;
  --color-firebrick: #d02626;
  --color-lightslategray: #8b909a;
  --color-forestgreen-100: #008d3e;
  --color-darkgray: #9f9f9f;
  --color-darkslategray: #313030;
  --light-solid-color-primary-primary-500-base: #7367f0;
  --light-opacity-color-primary-primary-16: rgba(115, 103, 240, 0.16);

  /* Gaps */
  --gap-mini: 15px;
  --gap-4xl: 23px;
  --gap-5xs: 8px;
  --gap-9xs: 4px;
  --gap-11xl: 30px;
  --gap-4xs: 9px;
  --gap-11xs: 2px;
  --gap-smi: 13px;
  --gap-3xs: 10px;

  /* Paddings */
  --padding-5xs: 8px;
  --padding-3xs: 10px;
  --padding-xl: 20px;
  --padding-5xl: 24px;
  --padding-4xs: 9px;
  --padding-mini: 15px;
  --padding-base-5: 16.5px;
  --padding-11xs: 2px;
  --padding-base: 16px;
  --padding-4xl: 23px;
  --padding-6xs: 7px;
  --padding-sm: 14px;
  --padding-9xs: 4px;
  --padding-11xl: 30px;

  /* border radiuses */
  --br-base: 16px;
  --br-mini: 15px;
  --br-81xl: 100px;
  --br-7xs: 6px;
  --br-xl: 20px;

  /* Effects */
  --light-gray-gray-sm: 0px 2px 4px rgba(165, 163, 174, 0.3);
}

body {
  margin: 0;
  font-size: 0.8rem;
  font-family: var(--font-open-sans) !important;
  line-height: 1.5;
}

.main-container,
.dashboard,
body {
  background-color: var(--color-gray-100) !important;
}

a:hover,
a {
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  color: red
}

.start-unset {
  left: unset !important;
}

.w-30 {
  width: 30% !important;
}

.sidebar {
  min-width: 290px;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  overflow: auto;
  background: #FFf;
  /* transition: all 0.5s ease-in-out; */
}

.image-logo {
  position: relative;
  width: 148.5px;
  height: 45px;
  object-fit: cover;
}

.indent-decrease-icon {
  position: relative;
  width: 24px;
  height: 24px;
}

.sidebar {
  background-color: #FBE9E0;
}

.logo {
  align-self: stretch;
  display: flex;
  flex-direction: row;
  padding: var(--padding-xl) var(--padding-sm) var(--padding-xl) 18px;
  align-items: center;
  justify-content: space-between;
}

.section,
.section:hover {
  color: #5F6D7E;
  text-decoration: none;
  align-self: stretch;
  border-radius: var(--br-7xs);
  display: flex;
  flex-direction: row;
  padding: var(--padding-mini) var(--padding-11xl);
  align-items: center;
  justify-content: flex-start;
}

.list {
  color: #212529;
  text-decoration: none;
  align-self: stretch;
  border-radius: var(--br-7xs);
  /* background-color: rgba(226, 100, 29, 0.2); */
  display: flex;
  flex-direction: row;
  padding: var(--padding-4xs) var(--padding-base);
  align-items: center;
  justify-content: flex-start;
  gap: var(--gap-5xs);
  text-decoration: none;
  color: var(--color-gray-200);
}

.list.active,
.list:hover {
  color: #212529;
  text-decoration: none;
  align-self: stretch;
  border-radius: var(--br-7xs);
  background-color: var(--color-primary);
  display: flex;
  flex-direction: row;
  padding: var(--padding-4xs) var(--padding-base);
  align-items: center;
  justify-content: flex-start;
  gap: var(--gap-5xs);
  text-decoration: none;
  color: var(--color-whitesmoke);
}

.list:hover {
  background-color: #55555530;
}

.list1,
.list1:hover,
.list:hover,
a.list1.accordion-button.accordion-default.collapsed {
  color: #212529;
  text-decoration: none;
  align-self: stretch;
  border-radius: var(--br-7xs);
  display: flex;
  flex-direction: row;
  padding: var(--padding-4xs) var(--padding-base);
  align-items: center;
  justify-content: flex-start;
  gap: var(--gap-5xs);
  cursor: pointer;
}

.accordion-button.accordion-default:not(.collapsed) {
  border: none;
  outline: 0;
  box-shadow: none;
  background-color: rgba(226, 100, 29, 0.2);
  color: var(--color-gray-200);
}


.card.color-gainsboro {
  background-color: var(--color-gainsboro-100);
}

.bages-secondary {
  background: #F7F7F8;
}

.bg-green {
  background: #008D3E14;
}

.font-size-large {
  font-size: var(--font-size-32);
}

.font-size-sm {
  font-size: var(--font-size-sm) !important;
  color: #5F6D7E;
}

.font-size-base {
  font-size: var(--font-size-base);
  margin-left: 10px;
}

.font-bold-base {
  font-size: var(--font-size-5xl);
}

.text-nowrap-small {
  font-size: var(--font-size-3xs);
}

.font-table {
  font-size: var(--font-size-lg);
  font-weight: 600;
}

.font-size-mini {
  font-size: var(--font-size-mini);
}

.color-dark {
  color: var(--color-darkslateblue);
  text-decoration: none;
}

/* div#seller_info {
  position: absolute;
  bottom: 10px;
} */
.table-responsive-custom .dt-container .bottom {
  display: flex;
  justify-content: space-between;
}

.table-responsive-custom .dt-container .bottom {
  margin-top: 10px;
  border-top: 1px solid #ccc;
  padding-top: 0.8rem;
}

.table-responsive-custom .dt-container .bottom .dt-length label {
  padding: 0 4px;
}

.dt-length label {
  margin-left: 0.5rem;
  text-transform: capitalize;
}

.btn-color.color-dark,
a.btn-color.color-dark,
button.btn-color.color-dark,
button.dt-button.buttons-excel.buttons-html5,
button.dt-button.buttons-excel.buttons-html5:hover,
div.dt-button:hover {
  background-color: var(--color-primary);
  /* font-size: var(--font-size-sm); */
  text-decoration: none;
  color: #fff;
}

.dt-buttons {
  float: right !important;
}

.dataTables_length {
  margin-bottom: 10px;
  display: none;
}

.invopive-details,
.invopive-details tr td,
.invopive-details tr th {
  background-color: #f8f9fa;
  border: none;
  padding: 3px;
}

h2.positn-table {
  position: absolute;
  top: 30px;
}

.color-dark:hover {
  text-decoration: underline;
  color: var(--color-darkslateblue);
}

.table>:not(:last-child)>:last-child>* {
  border-bottom-color: transparent !important
}

.table tr.color-darkdimg {
  background-color: var(--color-dimgray);
  font-size: 14px;
  font-weight: 600;
  vertical-align: middle;
}

.table>tbody {
  vertical-align: middle;
}

.table,
.dataTables_scrollHeadInner {
  font-size: var(--font-size-sm);
  width: 100% !important;
}

table.table.table-striped tr td,
table.table.table-striped tr th {
  /* min-width: 100px;
  width: 200px; */
  box-shadow: none !important;
  border-top: 1px solid #f3f3f30d !important;
  border-bottom: none;
}

/* table.table.table-striped.order-table tr td, table.table.table-striped.order-table tr th{
  min-width: auto;
} */

table.table.table-striped.padding-table tr td {
  padding: 20px;
  border-top: #00000020;

}

/* .dataTables_wrapper table tbody tr td{
  vertical-align:text-top!important;
} */
/* .table tr td {
  vertical-align: text-top;
  white-space: nowrap;
} */

/* .table tr:nth-child(even) {
  background-color: var(--color-whitesmoke);
} */

#logistic .logistic-td {
  min-width: 200px;
}

.threedots {
  display: -webkit-box;
  max-width: 100%;
  height: 40px;
  width: 200px;
  font-size: 14px;
  line-height: 19px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

p.ellsipis {
  white-space: nowrap;
  width: 200px;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* .table-format{display: none;} */
.text9 {
  position: relative;
  line-height: 22px;
  font-weight: 600;
  display: flex;
  align-items: center;
  width: 111px;
  flex-shrink: 0;
}

.text9::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background-color: var(--color-mediumseagreen);
  border-radius: 10px;
  margin-right: 10px;
}

/* tbody,
td,
tfoot,
th,
thead,
tr {
  border-color: inherit;
  border-style: none !important;
  border-width: 0;
} */

.text-warning::before {
  background-color: var(--color-gold);
}

.text-warning,
.text-warning span {
  color: #f4b700e8 !important;
  font-weight: 600;
}

.text9.text-danger::before {
  background-color: var(--color-firebrick);
}

.text-success,
.text-success span {
  color: #047334 !important;
}

.text-danger,
.text-danger span {
  color: var(--color-firebrick);
}

.cricle span.font-size-sm {
  font-weight: 600;
}

td.ellsipis-thre {
  width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
}

td.ellsipis {
  width: 250px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.packing-table td:nth-child(1) {
  background-color: #F3F3F3;
}

.packing-table tr td:nth-child(2) {
  background-color: white;
}

.packing-table td {
  border-bottom: 1px solid #00000020 !important;
}

table.table.table-amount tr td,
table.table.table-amount tr th {
  border: none;
}

table.order-details tr td {
  background-color: white;
  border: none;
}

div#main-container {
  min-height: 1000px;
  overflow: auto;
  padding-bottom: 100px !important;
}

/* Footer */
.copyright-2023-ministry-container {
  position: relative;
  line-height: 25px;
}

.copyright-2023-ministry-of-tex-wrapper {
  align-self: stretch;
  display: flex;
  flex-direction: row;
  padding: 0 var(--padding-3xs);
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  color: var(--color-black);
  border-top: 2px solid #edd9cf;
}


.container {
  flex-direction: column;
  padding: var(--padding-5xs) 0;
  gap: 38px;
}

select,
textarea,
button.btn.drodowncustom.btn-light,
.form-custom,
input {
  background-color: #F4F4F4 !important;
  border: 1px solid #E5E7EB;
  font-size: var(--font-size-sm) !important;
  font-weight: 500;
}



a.roatet {
  transform: rotate(90deg);
}

/* top selling */
.circle-one.text-center {
  background: #b3b1da;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  aspect-ratio: 1 / 1;
  padding: 51px;
}

.circle-two.text-center {
  background: #92addc;
  border-radius: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 195px;
  bottom: 53px;
  aspect-ratio: 1 / 1;
}

.circle-three.text-center {
  background: #E19366;
  border-radius: 100%;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  aspect-ratio: 1 / 1;
  left: 143px;
  bottom: -95px;
}

.circle-four.text-center {
  background: #8BC094;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  padding: 33px;
  aspect-ratio: 1 / 1;
  position: absolute;
  left: 12px;
  bottom: -78px;
}

.circle-fice.text-center {
  background: #CF716B;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  padding: 5px;
  width: 120px;
  aspect-ratio: 1 / 1;
  position: absolute;
  left: 85px;
  bottom: -158px;
  height: 120px;
}

.card-body.card-custom {
  min-height: 366px;
}

/*  */
.dropdown-toggle::after {
  position: absolute;
  right: 18px;
  bottom: 16px;
}

.notification.dropdown-toggle::after,
.dropstart .dropdown-toggle::before {
  display: none !important;
}

a.nav-link.notification.dropdown-toggle.show i {
  background-color: #00000020;
  border-radius: 100%;
}

.dropdown-custom {
  min-width: 500px;
}

.dropdown-menu.dropdown-custom.show {
  width: 395px;
}

ul.dropdown-menu.notification-alert {
  width: 400px !important;
}

.icons {
  font-size: var(--font-size-lg);
  padding: var(--gap-3xs);
}

.custom-list li {
  padding: 10px;
}

input.form-input-check {
  width: 18px;
  height: 18px;
  margin-right: 5px;
}

input.form-control,
select.form-select,
select.form-select.select-custom,
button#dropdownMenuButton1 {
  padding: 10px;
  border-color: #E5E7EB;
}

.input-group select {
  background-color: var(--color-primary) !important;
  background: url('../images/select-arrow.svg') no-repeat right 0.8em center / 1em, linear-gradient(to left, rgba(173, 54, 63, 1) 3em, rgba(143, 54, 63, 1) 3em);
  color: #fff;
}

.input-group .form-select:disabled {
  background: url('../images/select-arrow.svg') no-repeat right 0.8em center / 1em, #F0D4D7 !important;
}

.input-group select option {
  background: #fff;
  color: #000
}

.custom-switch .form-check-input {
  padding: 0.5rem 1rem;
}

.form-label {
  font-weight: 600;
  color: #475569;
}

.custom-switch .form-check-input:checked {
  padding: 0.5rem 1rem;
  background-image: url('../images/download.svg') !important;
  background-repeat: no-repeat !important;
  border-color: #8F363F;
}

.card-body.canvasheight {
  height: 400px;
}

.modal-header span {
  position: relative;
}

.modal-header span:before {
  content: '';
  position: absolute;
  background-color: rgba(3, 152, 85, 0.1);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  top: -9px;
  left: -12px;
}

.modal-header span:after {
  content: '';
  position: absolute;
  background-color: rgba(3, 152, 85, 0.2);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  top: -1px;
  left: -5px;
}

.modal-header span i {
  color: #039855
}

canvas {
  width: 100% !important;
}

/* .buttonfly{
  position: fixed;
  bottom: 57px;
  right: 20px;
} */

/* Header */


.main-container {
  width: calc(100% - 290px) !important;
  margin-left: 290px;
}

.d-none-custom {
  display: none;
}

/* login */
.gradient-custom-2 {
  background: url(../images/pic.png);
  background-size: 100%;
  background-repeat: no-repeat;

}

.gradient-form {
  background: url(../images/bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  height: 100vh;
}

/*module */
.col-1.border-left {
  width: 20px !important;
  border: 1px solid #00000020;
  border-right: none;
}

.col-1.border-right {
  width: 20px !important;
  border: 1px solid #00000020;
  border-left: none;
}

a.width-table.color-dark {
  width: 284px;
  align-items: center;
}

/* filter */
.card.bg-small-screen {
  background: transparent;
}

/* profile */
.avatar-upload {
  position: relative;
  max-width: 205px;
  margin: 50px auto;
}

.avatar-upload .avatar-edit {
  position: absolute;
  right: 8px;
  z-index: 1;
  bottom: 8px;
}

.avatar-upload .avatar-edit input {
  display: none;
}

.avatar-upload .avatar-edit input+label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 0;
  border-radius: 100%;
  background: #FFFFFF;
  border: 1px solid transparent;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-weight: normal;
  transition: all 0.2s ease-in-out;
}

.avatar-upload .avatar-edit input+label:hover {
  background: #f1f1f1;
  border-color: #d6d6d6;
}

.avatar-upload .avatar-preview {
  width: 230px;
  height: 230px;
  position: relative;
  border-radius: 100%;
  border: 6px solid #F8F8F8;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.avatar-upload .avatar-preview>div {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}


@media (max-width: 1200px) {
  .displayMOB {
    display: none;
  }

  .card.bg-small-screen {
    background: white;
  }

  .font-size-large {
    font-size: 24px;
  }

  .font-size-sm {
    font-size: var(--font-size-sm) !important;
    color: #5F6D7E;
  }

  .font-size-base {
    font-size: var(--font-size-base);
    margin-left: 10px;
  }

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

  .text-nowrap-small {
    font-size: var(--font-size-3xs);
  }

  .font-table {
    font-size: 16px;
  }

  .font-size-mini {
    font-size: var(--font-size-mini);
  }
}

@media (min-width: 769px) {
  .gradient-form {
    height: 100vh !important;
  }
}

@media (max-width: 768px) {
  .gradient-custom-2 {
    border-top-right-radius: .3rem;
    border-bottom-right-radius: .3rem;
  }

  .gradient-form {
    height: 100vh !important;
  }
}


@media (max-width: 600px) {

  table.table.table-striped tr td,
  table.table.table-striped tr th {
    min-width: 100px;
  }

  .card-body.canvasheight {
    height: 300px;
  }

  .dropdown-custom,
  .dropdown-menu.dropdown-custom.show {
    min-width: 100%;
  }

  ul.dropdown-menu.notification-alert {
    width: 100% !important;
  }

  div#sidebar {
    position: fixed;
    width: 100%;
    z-index: 9999;
    display: none;
  }

  div#main-container {
    margin-left: 0;
  }

  .d-none-custom {
    display: inline-block !important;
  }

  a.custom-navbar {
    font-size: 18px;
  }

  .card.bg-small-screen {
    background: white;
  }

  .displayMOB {
    display: none;
  }
}

@media (max-width: 1300px) {
  .circle-one.text-center {
    padding: 35px;
  }

  .circle-two.text-center {
    padding: 20px;
    left: 162px;
  }

  .circle-three.text-center {
    padding: 30px;
    left: 131px;
    bottom: -67px;
  }

  .circle-four.text-center {
    padding: 28px;
    left: 17px;
    bottom: -94px;
  }

  .circle-fice.text-center {
    padding: 5px;
    width: 100px;
    left: 100px;
    bottom: -146px;
    height: 100px;
  }

  .sidebar {
    min-width: 240px;
  }

  .main-container {
    width: calc(100% - 240px);
    margin-left: 240px;
  }
}

@media screen and (max-width: 640px) {
  .dataTables_wrapper .dt-buttons {
    float: right !important;
    text-align: center;
  }
}

/* Scroll */
/* width */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* hover */
.div-close {
  display: none;
}

.div-close {
  position: absolute;
  left: 15px;
  background-color: #FFF;
}

.hover-custom-class:hover {
  background-color: rgb(13 110 253 / 4%);
  border: 1px solid rgb(13 110 253 / 8%);
}

/*  */
div#main-container {
  min-height: 1000px;
  overflow: auto;
  padding-bottom: 100px !important;
}

/* custom css */
.seller-details>.row {
  min-height: 75vh;
}

.nav-pills .nav-link {
  text-align: left;
  color: #8B909A;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #eee !important;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  background-color: var(--color-primary) !important;
  text-align: left;
  padding: 0.75rem 1rem;
  color: #fff;
}

.nav-pills {
  /* background-color: var(--color-bg); */
  padding: 1rem !important;

}

.dataTable td a {
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 500;
}

.dataTable td a:hover {
  text-decoration: underline;
}

.dataTable td select,
.order-detail-card select,
.selectStatus select {
  border-color: var(--color-primary);
  background-color: #fff !important;
  border-radius: 4px;
  font-weight: 400;
  padding: 0.1rem 0.3rem;
  color: var(--color-primary);
}

.previewImg span {
  width: 100px;
  height: 115px;
  border: 1px solid #ccc;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  flex: 1 0 10%;
  max-width: 115px;
}

.previewImg span img {
  width: 100%;
  height: 100%;
}

.previewImg span small {
  position: absolute;
  color: white;
  right: 5px;
  top: 4px;
  background: red;
  border-radius: 6px;
  cursor: pointer;
}

.previewImg span:last-child {
  border-style: dashed;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f4f4f4;
}

.previewImg span:last-child i {
  font-size: 2rem;
}

.previewImg span:last-child input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: 1;
}

.product-grid-item {
  position: relative;
}

.product-grid-item input[type="checkbox"] {
  position: absolute;
  left: 20px;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  z-index: 999;
}

.product-grid-item input[type="checkbox"]:checked {
  background-color: var(--color-primary) !important;
  border: none;
}

.productInfos {
  margin-top: 1rem;
}

.productInfos p {
  color: #8B909A;
  line-height: 1.5;
}


.nav-link:focus,
.nav-link:hover {
  color: var(--color-primary);
}

.nav-link:hover {
  color: #BE8132 !important;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: '' !important;
  font-family: "bootstrap-icons";

}

.breadcrumb .breadcrumb-item a,
.breadcrumb .breadcrumb-item.active {
  color: #000;
  text-decoration: none;
  font-size: 16px;
}

.btn-primary {
  color: #fff;
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
}

.btn-primary:hover {
  background-color: #782f37 !important;
  border-color: #782f37 !important;
}

.btn-outline-primary {
  color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
}

.btn-outline-primary:hover {
  color: #fff !important;
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: var(--color-primary) !important;
  color: #fff !important;
}

table.dataTable thead th {
  font-weight: 500 !important;
}

.table tr:nth-child(even) {
  background-color: #fff !important;
}

table.dataTable>tbody>tr.child ul.dtr-details>li {
  border-color: transparent !important;
}

.order-detail-card {
  border-radius: 0.7rem !important;
  overflow: hidden;
}

.order-detail-card span a {
  text-decoration: none;
  color: #0B4981;
  font-weight: 500;
  font-size: 1rem;
}

.order-detail-card span a:hover {
  text-decoration: underline;
}

.proInfo p.proTitle {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  margin-bottom: 0;
}

.proInfo span,
.proInfo .price,
.proInfo .seller {
  color: #797B7D;
}

.order-detail-card .card-header {
  background-color: #FBE9E0;
}

.proInfo .seller a {
  color: #0B4981;
  text-decoration: none;
}

.op_sttus p {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0;
}

.op_sttus p span {
  font-size: 0.8rem;
  line-height: 0.5;
  font-weight: 400;
}

.op_sttus a {
  color: #526ED3;
}

.op_sttus p.warning {
  color: #EBAC09;
}

.op_sttus p.orAccepted {
  color: #526ED3;
}

.op_sttus p.orshipped {
  color: #008D3E
}

.proImg {
  width: 90px;
  height: 93px;
  overflow: hidden;
}

.proImg img {
  width: 100%;
}

.input-group-append button {
  background-color: #f4f4f4;
}

.w-35 {
  width: 35%;
  max-width: 170px;
}

.timeLine span.timeIcon i {
  background-color: var(--color-primary);
  color: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.timeLine span.timeIcon:after {
  content: '';
  position: absolute;
  width: 2px;
  height: 100px;
  background-color: #616E80;
  top: 50px;
  left: 24px;
}

.timeLineContent .card {
  background-color: #FBE9E0;
}

.timeLineContent .card p {
  font-weight: 500;
}

.timeLineContent .card p span.approved {
  color: #008D3E
}

.timeLineContent .card p span.disapproved {
  color: #D02626
}

.timeLineContent .card p span.pending {
  color: #E8B426
}

.timeLineContent .card p span.update {
  color: #486CC9
}

.timeLineContent span.timeBedge {
  background-color: #E4E4E7;
  color: #000;
  border-radius: 4px 0 0 4px;
  padding: 4px 6px;
}

.modal-body div:last-child .timeLine span:after {
  content: unset;
}

#sellerHistory a,
#product_history a {
  color: var(--color-primary);
  font-weight: 400;
  font-size: 0.9rem;
}

/* track progress css */
#progressbar {
  margin-bottom: 3vh;
  overflow: hidden;
  color: var(--color-primary);
  ;
  padding-left: 0px;
  margin-top: 3vh
}

#progressbar li {
  list-style-type: none;
  font-size: 0.9rem;
  width: 15%;
  float: left;
  position: relative;
  font-weight: 500;
  color: #000;
}

#progressbar li span {
  position: absolute;
  top: 0px;
  left: 0;
  color: #fff;
  z-index: 5;
  bottom: 0;
  font-size: 1.5rem;
  right: 0;
  margin: auto;
}

/* #progressbar li#step1 span{  
    left: 6px;
}
#progressbar li#step2 span{
  left: 54px;
}
#progressbar li#step3 span{
  left: 70px;
}

#progressbar li#step4 span{
  left: 70px;
}
#progressbar li#step5 span{
  left: 117px;
} */
#progressbar #step1:before {
  content: "";
  color: var(--color-primary);
  width: 37px;
  height: 37px;
  /* margin-left: 0px !important; */
}

#progressbar #step2:before {
  content: "";
  color: var(--color-primary);
  width: 37px;
  height: 37px;
  /* margin-left: 32%; */
}

#progressbar #step3:before {
  content: "";
  color: var(--color-primary);
  width: 37px;
  height: 37px;
  /* margin-right: 32% ;  */
}

#progressbar #step4:before {
  content: "\F272";
  font-family: bootstrap-icons;
  color: rgb(151, 149, 149, 0.651);
  width: 37px;
  height: 37px;
  /* margin-right: 32%; */
}

#progressbar #step5:before {
  content: "";
  color: rgb(151, 149, 149, 0.651);
  width: 37px;
  height: 37px;
  /* margin-right: 0px !important; */
}

#progressbar #step5:before {
  content: "";
  color: rgb(151, 149, 149, 0.651);
  width: 37px;
  height: 37px;
  /* margin-right: 0px !important; */
}

#progressbar li:before {
  line-height: 29px;
  display: block;
  font-size: 12px;
  background: rgb(151, 149, 149);
  border-radius: 50%;
  margin: auto;
  z-index: -1;
  margin-bottom: 2vh;
}

#progressbar li:after {
  content: '';
  height: 3px;
  background: rgb(151, 149, 149, 0.651);
  position: absolute;
  left: 0%;
  right: 0%;
  margin-bottom: 2vh;
  top: 17px;
  z-index: 1;
}

.progress-track {
  padding: 0;
}

#progressbar li:nth-child(2):after {
  margin-right: auto;
}

#progressbar li:nth-child(1):after {
  margin: auto;
}

#progressbar li:nth-child(3):after {
  float: left;
  width: 68%;
}

#progressbar li:nth-child(4):after {
  margin-left: auto;
  width: 132%;
}

#progressbar li.active:before,
#progressbar li.active:after {
  background: var(--color-primary);
}

table.dataTable.stripe>tbody>tr:nth-child(2n+1)>*,
table.dataTable.display>tbody>tr:nth-child(2n+1)>* {
  box-shadow: unset !important;
}

table.dataTable.display tbody tr:hover>.sorting_1,
table.dataTable.display>tbody tr>.sorting_1,
table.dataTable.display>tbody>tr:hover>* {
  box-shadow: unset;
}

tr.child>* {
  border-top: none !important;
  /* border-style:unset !important */
}

.dt-hasChild>*,
.dtr-expanded>* {
  border-style: none !important;
}

/* div.dt-container .dt-input{
  background-color: var(--color-primary) !important;
  color: #fff;
} */

div.dt-container .dt-paging .dt-paging-button.current,
div.dt-container .dt-paging .dt-paging-button.current:hover {
  background-color: var(--color-primary);
  color: #fff !important;
}

#dropdownMenuButton1 {
  min-width: 150px;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  margin-top: 30px;
  height: 14px;
  content: "\F282";
  font-family: bootstrap-icons !important;
  font-weight: 700;
  border-top: unset;
  border-right: unset;
  border-bottom: unset;
  border-left: unset;
}

/* .form-check-input:checked[type=checkbox], .dtr-control input[type="checkbox"] {    
    background-color: var(--color-primary) !important;
    border-color: transparent;
} */
.option-green {
  color: #4CBB17 !important;
  border: 1px solid #4CBB17 !important;
}

.option-gray {
  color: gray !important;
  border: 1px solid gray !important;
}

.option-orange {
  color: orange !important;
  border: 1px solid orange !important;
}

.option-red {
  color: red !important;
  border: 1px solid red !important;
}

.selectStatus option,
.productStatus option {
  color: #8F363F !important;
}

.icon-shape {
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
}

.bg-light-info {
  background-color: #eef6fe;
}

.bg-light-success {
  background-color: #e3f3ea;
}

.bg-light-danger {
  background-color: #fcf4f4;
}

.bg-light-warning {
  background-color: #FEF8E7;
}

.bg-light-muted {
  background-color: #f2f1f1;
}

.icon-shape i {
  font-size: 1.2rem;
}

.ico-color {
  color: #4CA4F4
}

.newdocupload {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f4f4f4;
  width: 100px;
  height: 100px;
  border: 1px dashed #ccc;
  border-radius: 0.5rem;
}

.newdocupload input[type="file"] {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: 1;
}

.newdocupload i {
  font-size: 2rem;
}

/* style for ritesh */
.w-5 {
  width: 20px;
}

.flex {
  display: flex;
}

.justify-between {
  justify-content: space-between;
  align-items: center;
}

nav div:nth-child(2) {
  padding-bottom: 15px;
}

label.error,
span.error,
div.error {
  color: #dd4b39;
  font-size: 12px;
  font-style: italic;
}

.readonly {
  pointer-events: none;
}


.listingbox {
  border: 0px;
  border-radius: 5px;
  display: block;
  box-shadow: 0px 4px 20px 0px #0000001F;
  padding: 0;
}

.order_header {
  background: #FFFBEB;
  border-radius: 5px 5px 0px 0px;
}

.order_id_num {
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  text-decoration: underline;
}

.order_info span {
  display: block !important;
}

.order_summary span {
  margin-right: 15px;
}

.order_summary span:last-child {
  margin-right: 0px;
}

.orderbtns {
  border: 1px solid #272461;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  color: #272461;
  width: 100%;
}

.orderbtns:hover {
  color: #fff;
  background-color: #90363f;
  border-color: #90363f;
}

.submit-invoice {
  padding: 8px 20px;
  border: 0.83px solid #F47213;
  color: #F47213;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
}

.submit-invoice:hover {
  border: 0.83px solid #F47213;
  color: #FFF;
  background-color: #F47213;
}

.text-order {
  color: #2B72AD;
}

.text-accepted {
  color: #009951
}

.text-processing {
  color: #C56E17;
}

.text-shipped {
  color: #C99016
}

.text-rejected {
  color: #EC221F
}

.bill_summary span {
  display: block;
}

.invoice_total div {
  display: flex;
  justify-content: space-between;
  align-items: self-start;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Black with 50% opacity */
  z-index: 999; /* Ensure it's above other elements */
}

.popup-confirm-box {
  width: 480px;
  border-radius: 5px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #FFF;
  padding: 30px 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}
.wd-custom{
  width: 10%;
}

input.checkorder {
  position: relative;
  border: 1px solid #EEE;
  border-radius: 2px;
  outline: none;
  height: 20px;
  width: 20px;
  vertical-align: middle;
}

.detail-wrap {
  display: flex;
  gap: 10px;
  justify-content: space-around;
  align-items: flex-start;
}
.detail-wrap div span {
  display: block;
  margin: 10px 0px;
}
.detail-wrap div:nth-child(1) {
  width: 10%;
}
.detail-wrap div:nth-child(3) {
  width: 5%;
}
.detail-wrap div:nth-child(4), .detail-wrap div:nth-child(5), .detail-wrap div:nth-child(6), .detail-wrap div:nth-child(7) {
  width: 10%;
}
.detail-wrap div:nth-child(9) {
  width: 16%;
}
.image-size{
  width: 80px;
  border-radius: 40px;
  border: 1px solid #ddd;
}

.form-group {
    margin-bottom: 10px;
}

#delete-form .icons{
  vertical-align: initial;
  padding: 0;  
}

.menu-list{
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.3s;
    list-style: none;  
}

.menu-list li{
    padding: 2px 10px;
    border-radius: 5px;
    margin-bottom: 2px;
}

.menu-list li a{
    color: #212529;
    border-radius: 5px;
}