.page-title-wrapper {
    margin-bottom: 2rem;
}
.page-title-wrapper .page-title {
    font-size: 34px;
}
.weightship-progress {
  padding: 10px 15px;
  margin: 10px 0 10px;
  background: #eefdd5;
  border-radius: 10px;
}
.weightship-progress .weightship-text {
  color: #333;
  margin-bottom: 0;
  max-width: 100%;
  text-align: center;
  font-weight: 500;
}
.weightship-progress .weightship-text div {
  margin-bottom: 0;
}
.weightship-progress .weightship-text div small {
  display: block;
  color: #6b7b50;
}
.weightship-progress div.upsell {
  color: #333;
  text-align: center;
}
.weightship-progress div.upsell small {
  display: block;
  color: #6b7b50;
}
.weightship-progress div .weightship-price {
  color: red;
  font-weight: 600;
}
.weightship-progress div .weightship-bold {
  font-weight: 600;
  color: #009813;
}
.weightship-progress-bar {
  overflow: hidden;
  height: 50px;
  width: calc(100% - 74px);
  margin: 0 auto;
  display: inline-block;
}
.weightship-progress .weightship-progress-bar-wrapper {
  color: #000;
}
.weightship-progress .weightship-progress-bar-wrapper span {
  display: inline-block;
}
.weightship-progress .weightship-progress-bar-wrapper span.min {
  float: left;
  width: 28px;
  font-size: 13px;
}
.weightship-progress .weightship-progress-bar-wrapper span.max {
  float: right;
  width: 38px;
  text-align: right;
  font-size: 13px;
}
.weightship-progress .weightship-progress-bar-wrapper .weightship-progress-bar-bg {
  background-color: rgba(0, 0, 0, 0.2);
  height: 18px;
  border-radius: 3px;
  overflow: visible;
  position: relative;
  width: 100%;
}
.weightship-progress .weightship-progress-bar-wrapper .weightship-progress-bar-fill {
  height: 18px;
  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);
}
.weightship-progress .weightship-progress-bar-wrapper .weightship-progress-bar-progress {
  background: #00b052;
  position: relative;
}
}
.weightship-progress .weightship-progress-bar-wrapper .weightship-progress-bar {
  margin: 0 auto;
  width: calc(100% - 74px);
  display: inline-block;
  position: relative;
}
.weightship-progress-bar-wrapper .weightship-progress-bar-weight {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateX(-50%) translateY(-100%);
  z-index: 2;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 20px solid #00b052;
  text-align: center;
}
.weightship-progress-bar-wrapper .weightship-progress-bar-weight::after {
  content: attr(data-content);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 2px 5px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.weightship-progress .weightship-progress-bar-wrapper .weightship-progress-bar-weight {
  position: absolute;
  right: 0;
  top: 15px;
  transform: translateX(-50%) translateY(-100%);
  z-index: 2;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 20px solid #00b052;
  text-align: center;
}
.total_cart_weight {
  text-align: right;
  font-size: 16px;
  color: #333;
  margin-top: 5px;
  font-weight: 600;
}
.col.weight .product-item-name {
  margin: 0;
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .weightship-progress {
    padding: 10px 15px;
  }
  .weightship-progress .weightship-text {
    font-size: 18px;
  }
  .weightship-progress div.upsell {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
  }
}
@media screen and (max-width: 767px) {
  .total_cart_weight {
    text-align: center;
  }
  .cart.item .col.weight {
      display: block !important;
      width: 100% !important;
      text-align: center !important;
      order: 6;
  }
  .col.weight::before {
    content: attr(data-th) ":";
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    text-align: center !important;
  }
}

@-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);
  }
}
