/** Shopify CDN: Minification failed

Line 17:0 Unexpected "}"

**/
.product-information.section {
    font-size: large;
    font-weight: 600;
    margin-left: 6px;
    color: #16a41d;
  }
  & s.compare-at-price {
    opacity: 1;
    color: black;
    font-size: 16px;
  }
}
product-card {
  & span.price {
    color: #d84339;
  }
  & s.compare-at-price {
    opacity: 1;
    color: black;
  }
}
/*stock usp*/
.cstm-usp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: -1rem 0;
}

.cstm-usp-item:not(:last-child) {
  margin-bottom: 8px;
}

.cstm-usp-item .cstm-usp-icon {
  height: 25px;
  width: auto;
}

.cstm-usp-item .cstm-usp-text {
  margin: unset;
}

.cstm-usp-item .cstm-usp-text.red {
  color: #16a41d;
}

.blob {
  display: block !important;
  background: black;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
  margin: 10px;
  height: 10px;
  width: 10px;
  transform: scale(1);
  animation: pulse-black 2s infinite;
  margin-left: 5px;
}

.blob.red {
  background: #16a41d;
  box-shadow: 0 0 0 0 #16a41d;
  animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 #16a41d;
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(51, 217, 178, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(51, 217, 178, 0);
  }
}
