@charset "UTF-8";
html.modern.sidebar-left-sm .header.header-nav-menu .logo:after {
  width: 250px;
}
.header .userbox .profile-info {
  min-width: 4rem;
}
.porto-help-tip {
  color: #666;
  cursor: help;
  display: inline-block;
  font-size: 1.1em;
  height: 16px;
  line-height: 16px;
  position: relative;
  vertical-align: middle;
  width: 16px;
  margin-left: 5px;
}
.porto-help-tip:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  text-indent: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  content: "";
  cursor: help;
}
.tooltip {
  z-index: 9997;
}
.form-control[type="number"] {
  min-width: 4rem;
}
.form-group .select2-container {
  width: 100% !important;
}
.form-group
  .select2-container
  .select2-selection--single
  .select2-selection__rendered {
  padding-left: 0;
}
.select2-container--bootstrap
  .select2-selection--multiple
  .select2-search--inline
  .select2-search__field {
  height: 35px;
  padding-left: 0;
}
.select2-container .select2-selection--multiple ul.select2-selection__rendered {
  padding-left: 0;
}
span.select2-container .select2-selection--multiple,
span.select2-container .select2-selection--single {
  min-height: 38px;
  box-shadow: none;
  border: 1px solid #ddd;
  padding-left: 10px;
  padding-right: 10px;
}
.select2-container--default.select2-container--focus
  .select2-selection--multiple {
  border: 1px solid #aaa;
}
.truncate {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vendor-banner {
  background: transparent;
  border: 2px dashed #e7e7e7;
  min-height: 400px;
  padding: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.vendor-banner > span {
  position: absolute;
  top: 50%;
  left: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.vendor-banner i {
  display: block;
  text-align: center;
  font-size: 3rem;
  color: #e7e7e7;
}
.withdraw-notice {
  background-color: #e0ffff;
  padding: 1rem;
  font-weight: 600;
}
@keyframes bouncedelay {
  0%,
  80%,
  to {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
.loading-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all 0.5s ease-in-out;
  background: #fff;
  opacity: 1;
  visibility: visible;
  z-index: 999999;
}
.loaded > .loading-overlay {
  opacity: 0;
  visibility: hidden;
}
body:not(.loaded) > .loading-overlay {
  transition: none;
}
.bounce-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  margin: -9px 0 0 -35px;
  transition: all 0.2s;
  text-align: center;
  z-index: 10000;
}
.bounce-loader .bounce1,
.bounce-loader .bounce2,
.bounce-loader .bounce3 {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background-color: #ccc;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  animation: 1.4s ease-in-out 0s normal both infinite bouncedelay;
}
.bounce-loader .bounce1 {
  animation-delay: -0.32s;
}
.bounce-loader .bounce2 {
  animation-delay: -0.16s;
}
body:not(.loaded) > .bounce-loader {
  transition: none;
}
body:not(.loaded) > :not(.loading-overlay) {
  visibility: hidden;
}
.content-body {
  position: relative;
}
.content-body .loading-overlay {
  position: absolute;
  inset: 40px;
}
.btn[disabled] {
  pointer-events: none;
  opacity: 0.8;
}
.react-datepicker-wrapper {
  flex: 1;
}
.react-datepicker-wrapper .react-datepicker__input-container {
  display: block;
}
.tabs-modern .react-tabs__tab.active {
  background: #fff;
  border-radius: 0 4px 4px 0;
}
.tabs-modern .react-tabs__tab:not(:last-child) {
  border-bottom: 1px solid #efefef;
}
.card-title.h5 {
  margin: 0;
}
.card-subtitle.h6 {
  margin: 7px 0 0;
  font-weight: normal;
}
.ui-pnotify .Toastify__toast {
  font-family: inherit;
}
.toggle-preview .collapse:not(.show) {
  display: block;
}
.category-image {
  width: 60px;
}

.product_image_div {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: 10px;
  background: #f2f2f2;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease-in-out;

  .edit_div {
    opacity: 0;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    background: #0000004b;

    color: #fff;
  }
  &:hover .edit_div {
    opacity: 1;
    transition: all 0.3s ease-in-out;
  }
}

.user_image_div {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 190px;
  border-radius: 3px;
  padding: 5px;
  background: #f2f2f2;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  img {
    width: 100%;
    border-radius: 3px;
  }
  .edit_div {
    opacity: 0;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    background: #0000004b;

    color: #fff;
  }
  &:hover .edit_div {
    opacity: 1;
    transition: all 0.3s ease-in-out;
  }
}

.react-datepicker-popper {
  z-index: 9999 !important; /* higher than Bootstrap modal (1050) */
}
/*# sourceMappingURL=custom.min.css.map */

.stock_edit {
  display: flex;

  button {
    border: 1px solid #dddddd73;
    outline: none;
    padding: 0 10px;
    &&:hover {
      background: #000;
      color: #fff;
    }
  }
  input {
    width: 50%;
    border-radius: 0px;
    text-align: center;
  }
}

input [type="number"]::-webkit-inner-spin-button,
input [type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none !important;
  margin: 0;
}
