/** Shopify CDN: Minification failed

Line 40:3 Expected "}" to go with "{"

**/
.product-inventory__indicator {
  display: block;
  position: relative;
  /* height: 5px; */
  height: 15px;
  margin-top: 8px;
  border-radius: 3px;
  background-color: rgba(var(--text-color)/0.1);
  /* below line added by MK */
  transition: margin-left 2s;
}

.product-inventory__indicator span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  /* transition: width 0.3s cubic-bezier(0, 0.14, 0.19, 1), background-color 0.3s; */
  transition: width 2s cubic-bezier(0, 0.14, 0.19, 1), background-color 1s;
  border-radius: inherit;
  background-color: currentColor;
  /* background-color:#45b1e8; */
}

/* this controls the text shown in the inventory section of the product page */
.product-inventory__urgency p {
  display: inline;
  /* added below to increase the default font size of the message per Ernie's request.  Remove this line to get back to default setting. -MK */
  font-size: 1.4em;

  /* this separates the inventory "block" from the ab-cataog-page "block" css */
  .inventory_block {
    padding: 0% 0%;
  }