/* iProc General */
:disabled,
.disabled {
  cursor: not-allowed !important;
  opacity: 0.4;
}

input[readonly],
textarea[readonly] {
  opacity: 0.4;
}

.label.label-warning {
  color: #EF4444;
}

/* Bootstrap Table */
.fixed-table-loading {
  display: none;
  position: absolute;
  top: 24px;
  left: 2%;
  height: 37px;
}

.fixed-table-body {
  overflow-x: auto;
  width: 100%;
}

.no-records-found td {
  text-align: center;
  font-size: 14px;
  color: rgba(0, 0, 0, .25);
  opacity: .5;
  padding-top: .75rem;
}

.bootstrap-table .fixed-table-container .table thead th .sortable {
  cursor: pointer;
  background-position: right;
  background-repeat: no-repeat;
  padding-right: 30px
}

.bootstrap-table .fixed-table-container .table thead th .sortable-center {
  padding-right: 15px;
  padding-left: 15px;
}

/* eCatalog */
.product-name,
.address-product-list {
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.theme-krajee-svg.rating-sm .krajee-icon,
.theme-krajee-svg.rating-sm .krajee-icon-clear {
  width: 13px;
  height: 13px;
}

.rating-container {
  display: inline-block;
}

.theme-krajee-svg.rating-sm {
  font-size: 13px;
}

.pulsate-notif-cart::before {
  content: '';
  display: block;
  position: absolute;
  top: -3px;
  left: -3px;
  right: 0;
  bottom: 0;
  animation: pulse 1s ease infinite;
  border-radius: 50%;
  border: 7px double rgb(49, 196, 141);
  padding: 5px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  60% {
    transform: scale(1.3);
    opacity: 0.4;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.badge-notif-cart {
  background: #0057bb;
  color: white;
  position: relative;
  top: -12px;
  right: 15px;
}

.badge-notif-cart-private {
  background: #ee441a;
  color: white;
  position: relative;
  top: -12px;
  right: 15px;
}

/* animated checked-box */
.danger-checkmark {
  border-radius: 50%;
  stroke-width: 6px;
  stroke: #ec4758;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #ec4758;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.danger-checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes scale {

  0%,
  100% {
    transform: none;
  }

  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #fff;
  }
}

.select2-results__option {
  display: flex;
  align-items: center;
}

.select2-container--default .select2-selection--single {
  background-color: transparent;
  border: none;
  border-radius: 0;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: inherit;
  line-height: inherit;
}

.select2-container .select2-selection--single {
  height: auto;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: flex;
  align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 36px;
  right: 4px;
}

#product_desc p:first-child,
#product_desc li:first-child {
  font-weight: bold;
}

.ui-datepicker.ui-widget {
  display: none !important;
}

th.sorting,
th.sorting_asc,
th.sorting_desc {
  cursor: pointer;
}