[bss-b2b-product-price].price-loading {
  position: relative;
  color: transparent !important;
}
[bss-b2b-product-price].price-loading * {
  visibility: hidden;
}
[bss-b2b-product-price].price-loading::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.2s infinite;
}
@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}