body {
  font-size: .875rem;
}

.feather {
  width: 16px;
  height: 16px;
  vertical-align: text-bottom;
}

/* .amplify-container {
  background-color: #fafafa;
  height: -webkit-fill-available;
} */

.amplify-normalise {
  background-color: white;
  height: -webkit-fill-available;
}

/*
 * Sidebar
 */

.sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100; /* Behind the navbar */
  padding: 48px 0 0; /* Height of navbar */
  /* box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1); */
}

.sidebar-sticky {
  position: relative;
  top: 0;
  height: calc(100vh - 48px);
  /* padding-top: .5rem; */
  overflow-x: hidden;
  overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
  background-color: #343a40;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sidebar-sticky {
    position: -webkit-sticky;
    position: sticky;
  }
}

.sidebar .nav-link {
  font-weight: 500;
  font-size: 1.05em;
  color: rgb(216, 214, 214);
}

.sidebar .nav-link .feather {
  margin-right: 0.85em;
  color: rgb(216, 214, 214);
}

/* .sidebar .nav-link.active {
  color: #007bff;
} */

.sidebar .nav-link:hover .feather,
.sidebar .nav-link.active .feather {
  color: inherit;
}

.sidebar-heading {
  font-size: .75rem;
  text-transform: uppercase;
}

.sidebar .nav-link:hover,
.sidebar .nav-link.active {
  background-color: rgba(0, 0, 0, .1);
  color: white;
}

.sidebar .nav-link {
  padding: .8445rem 1rem;
}

@media screen and (max-width: 767px) {
  .sidebar-sticky {
    padding-top: 1.1em;
  }
}

/*
 * Content
 */

[role="main"] {
  padding-top: 48px; /* Space for fixed navbar */
}

/*
 * Navbar
 */

.navbar-brand {
  padding-top: .75rem;
  padding-bottom: .75rem;
  font-size: 1rem;
  background-color: rgba(0, 0, 0, .25);
  /* box-shadow: inset -1px 0 0 rgba(0, 0, 0, .25); */
}

.navbar .form-control {
  padding: .75rem 1rem;
  border-width: 0;
  border-radius: 0;
}

.form-control-dark {
  color: #fff;
  background-color: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .1);
}

.form-control-dark:focus {
  border-color: transparent;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
}

/*
 * Invoice
 */
.invoice {
    position: relative;
    background: #fff;
    border: 1px solid #f4f4f4;
    padding: 20px;
    margin: 10px 25px;
}
.page-header {
    margin: 10px 0 20px 0;
    font-size: 22px;
}

/*
 * New Product Page/Edit Product Page
 */
.productImg img {
  max-width: 350px;
  max-height: 350px;
  padding: 1em;
}

/*
 * Onboarding
 */
 .onboarding-logo-section {
   padding-top: 1.5em;
 }

 .onboarding-logo-section h4 {
   padding-top: 0.5em;
 }

 .allow-click {
   pointer-events: unset;
   margin-top: 1em;
 }

 .pad-top {
   padding-top: 1em;
 }

 .mar-bot {
   margin-bottom: 0.5em;
 }

 .mar-right {
   margin-right: 0.5em;
 }

 .mar-bot-lg {
   margin-bottom: 1em;
 }

.checkbox-label {
  padding-right: 0.8em;
}

.checkbox-heading-label {
  display: block;
}

.pt-3 button {
  display: inline-block;
  float: right;
}

.pt-3 h5 {
  display: inline-block;
}

.inputDnD .form-control-file {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 7em;
  outline: none;
  visibility: hidden;
  cursor: pointer;
  background-color: #c61c23;
  box-shadow: 0 0 5px solid currentColor;
}
.inputDnD .form-control-file:before {
  content: attr(data-title);
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 100%;
  min-height: 6em;
  line-height: 2em;
  padding-top: 1.5em;
  opacity: 1;
  visibility: visible;
  text-align: center;
  border: 0.25em dashed currentColor;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
}

.react-responsive-modal-modal {
  padding: unset !important;
  background: unset !important;
  background-clip: unset !important;
  box-shadow: unset !important;
}

.react-responsive-modal-overlay {
  z-index: 10000000000 !important;
}

.modal {
  display: unset !important;
}

.modal-dialog {
  width: 400px;
}

@media only screen and (max-width: 500px) {
  .modal-dialog {
    width: 325px;
  }
}

[role="main"] {
  padding-top: 18px;
}

.small-input {
  width: 3em;
}

.orderAdd {
  padding: .275em !important;
  padding-top: .75em !important;
}

.select-editorder {
  padding: .45em !important;
  min-width: 150px;
}

.preview-img-border {
  border: red;
  border-style: dashed;
  text-align: center;
}

.react-bs-table-container th {
  background-color: white;
}

.react-bs-table-container .table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.5);
}

.react-bs-table-container .table-striped tbody tr:nth-of-type(even) {
  background-color: white;
}

/* Dashboard Widgets */
.order-card {
  color: #fff;
}

.bg-c-blue {
  background: linear-gradient(45deg,#4099ff,#73b4ff);
}

.bg-c-green {
  background: linear-gradient(45deg,#2ed8b6,#59e0c5);
}

.bg-c-yellow {
  background: linear-gradient(45deg,#FFB64D,#ffcb80);
}

.bg-c-pink {
  background: linear-gradient(45deg,#FF5370,#ff869a);
}

.card {
  border-radius: 5px;
  -webkit-box-shadow: 0 1px 2.94px 0.06px rgba(4,26,55,0.16);
  box-shadow: 0 1px 2.94px 0.06px rgba(4,26,55,0.16);
  border: none;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.card .card-block {
  padding: 1.3em;
}

.order-card i {
  font-size: 1.3em;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.col-xs-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

@media only screen and (max-width: 500px) {
  .react-bs-table-container .table {
    width: 650px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 800px) {
  .card-deck .card {
    flex: unset;
    margin-right: unset;
  }
}

.medium-input {
  width: 5em;
}

@media screen and (max-width: 767px) {
  input, select, textarea {
    font-size: 16px !important;
  }
}

.mt-05 {
  margin-top: 0.5em;
}

.border-green {
  border: 4px solid #07bc0c;
}

.edit-pricelist-mode-toast {
  min-height: unset !important;
  width: fit-content;
  float: right;
}

.edit-pricelist-mode-toast .btn-sm {
  padding: .1rem .5rem !important;
}

.react-bs-table .text-filter {
  display: none !important;
}

.form-control.mini {
  width: unset;
  height: unset;
  font-size: unset;
}

.easy-edit-wrapper,
.easy-edit-inline-wrapper {
  display: inline-block;
}