.freeship-progress {
  padding: 15px;
  background-color: transparent;
  border-top: 1px solid #ccc;
}
@media screen and (min-width: 768px) {
  .freeship-progress {
    padding: 16px 0;
  }
}
.freeship-progress .freeship-text {
  color: #000;
  margin-bottom: 0;
  max-width: 100%;
}
.freeship-progress .freeship-text p {
  margin-bottom: 0;
}
.freeship-progress p.upsell {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .freeship-progress p.upsell {
    text-align: left;
  }
}
.freeship-progress p .freeship-price {
  color: red;
  font-weight: 600;
}
.freeship-progress p .freeship-bold {
  font-weight: 600;
}
.freeship-progress .freeship-progress-bar-wrapper {
  color: #000;
  display: flex;
  align-items: center;
}
.freeship-progress .freeship-progress-bar-wrapper span {
  display: inline-block;
}
.freeship-progress .freeship-progress-bar-wrapper span.min {
  width: 30px;
}
.freeship-progress .freeship-progress-bar-wrapper span.max {
  width: 47px;
  text-align: right;
}
.freeship-progress .freeship-progress-bar-wrapper .freeship-progress-bar-bg {
  background-color: rgba(0, 0, 0, 0.1);
  height: 8px;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.freeship-progress .freeship-progress-bar-wrapper .freeship-progress-bar-fill {
  height: 8px;
  display: block;
  border-radius: 3px;
  animation-name: shippingProgressBar;
  animation-duration: 1.25s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  -webkit-animation: shippingProgressBar 1.25s 1;
  animation: shippingProgressBar 1.25s 1;
  transition: width 0.667s cubic-bezier(0.37, 0.16, 0.22, 0.89);
}
.freeship-progress .freeship-progress-bar-wrapper .freeship-progress-bar-progress {
  background: #00b052;
}
.freeship-progress .freeship-progress-bar-wrapper .freeship-progress-bar {
  margin: 0 auto;
  width: calc(100% - 58px);
  display: inline-block;
}
@-webkit-keyframes shippingProgressBar {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes shippingProgressBar {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
