.wpnet-free-shipping-bar {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}

.progress-container {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  overflow: hidden;
  margin: 0;
  height: calc(100% + 20px) !important;
}

.shipping-message {
  position: relative;
  text-align: center;
  font-size: 14px;
  color: #000;
  z-index: 9;
}

.progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#fd7e14), to(#ff8c42));
  background: linear-gradient(90deg, #fd7e14 0%, #ff8c42 100%);
  overflow: hidden;
  -webkit-transition: width 0.5s ease, background 0.3s ease;
  transition: width 0.5s ease, background 0.3s ease;
}

.wpnet-free-shipping-bar.qualified .progress-bar {
  background: -webkit-gradient(linear, left top, right top, from(#28a745), to(#34ce57));
  background: linear-gradient(90deg, #28a745 0%, #34ce57 100%);
}

.progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(30%, rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0.3)), color-stop(70%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0) 100%);
  -webkit-animation: shimmer 5s infinite;
          animation: shimmer 5s infinite;
}

@-webkit-keyframes shimmer {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes shimmer {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
.wpnet-free-shipping-bar-error {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
  padding: 15px;
  text-align: center;
  margin: 20px 0;
}