@media (min-width: 576px) {
  .quantity-input {
    width: 75px;
  }
}

@media (max-width: 576px) {
  .table thead {
    display: none;
  }
  .table,
  .table tr,
  .table td {
    display: inline-block;
    width: 100%;
  }
  .table tr {
    margin-bottom: 15px;
  }
  .table td {
    text-align: right;
    padding-left: 50%;
    position: relative;
  }
  .table td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 100%;
    padding-left: 15px;
    text-align: left;
    font-weight: bold;
  }
}
.table-responsive {
  width: 100%;
}
.side-bar {
  display: none !important;
}
.loading-spinner {
  display: none;
  margin-left: 10px;
}
/* HTML: <div class="loader"></div> */
.loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(farthest-side, #ffa516 94%, #0000) top/8px 8px
      no-repeat,
    conic-gradient(#0000 30%, #ffa516);
  -webkit-mask-image: radial-gradient(
    farthest-side,
    #0000 calc(100% - 8px),
    #000 0
  );
  mask-image: radial-gradient(farthest-side, #0000 calc(100% - 8px), #000 0);
  animation: l13 1s infinite linear;
}
@keyframes l13 {
  100% {
    transform: rotate(1turn);
  }
}
.delete-product-btn {
  border: none !important;
}
