.card {
  border: none;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.verified-otp-card input {
  width: 41px;
  margin: 0 9px;
  height: 44px;
  border-radius: 9px;
}

.verified-otp-card input:focus {
  border: solid 1px #dc3545;
  box-shadow: none;
}


/*form elements
remove form control height
*/
.form-control {
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  border: 1px solid #e2e5ec;
  background-color: #fff;
}

.dataTables_length select {
  padding: 10px !important;
}

.form-control:focus {
  border-color: var(#0d6efd);
  box-shadow: none;
  background-color: #f7f8fa;
}

.form-control:-ms-input-placeholder {
  color: #898b92;
}

.form-control::-moz-placeholder {
  color: #898b92;
}

.form-control::placeholder {
  color: #898b92;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #f7f8fa;
  opacity: 1;
  border-color: #e2e5ec;
}

.form-control-sm {
  height: calc(2.3rem + 2px);
  padding: 0.4rem 0.7rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  border-radius: 0.25rem;
}

.form-control-lg {
  height: calc(3rem + 2px);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.upload-file {
  position: relative;
  cursor: pointer;
  margin-top: 10px;
}

.upload-file__input {
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 0;
  inline-size: 100%;
  block-size: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-file__img_drag {
  inline-size: 100%;
  max-inline-size: 682px;
  block-size: auto;
}

.upload-file__img img {
  border-radius: 10px;
  background-color: #fff;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.order-status {
  align-items: center !important;
  font-family: "Open Sans", Arial, Verdana, sans-serif !important;
  font-weight: bold !important;
  font-size: 12px !important;
  display: inline-block !important;
  height: 100% !important;
  white-space: nowrap !important;
  width: auto !important;
  position: relative !important;
  border-radius: 100px !important;
  line-height: 1 !important;
  overflow: hidden !important;
  padding: 0px 12px 0px 20px !important;
  text-overflow: ellipsis !important;
  line-height: 1.25rem !important;
  color: #000 !important;
  word-break: break-word !important;
}

.order-shipped {
  background: blue;
  color: #fff !important;
}

.order-on_way {
  background: #dc8f4e;
  color: #fff !important;
}

.order-shorting {
  background: #2DCCFF;
}

.order-ready_to_deliver {
  background: #56F000;
}

.order-pending {
  background: #ffcc00;
  /* Example color for pending orders */
  color: #fff !important;
}

.order-approved {
  background: #28a745;
  /* Example color for approved orders */
  color: #fff !important;
}

.order-bought {
  background: #17a2b8;
  /* Example color for bought orders */
  color: #fff !important;
}

.order-received {
  background: #6c757d;
  /* Example color for received orders */
  color: #fff !important;
}

.order-cancelled {
  background: #dc3545;
  /* Example color for cancelled orders */
  color: #fff !important;
}