.js-vue-checkout.blocked .cart-form-btn {
  pointer-events: none;
  color: #e0dfdf;
  border-color: #b1b1b1;
  background: #b1b1b1;
}
.js-vue-checkout.blocked .cart-form-counts {
  color: #da0a15;
  background: #ffebec;
}
.js-vue-checkout.blocked .cart-form-counts:before {
  background-image: url(../images/icons/warning-2.svg);
}
.cart-form-btn {
  max-width: 100%;
}
.cart-form-counts {
  position: relative;
  width: 333px;
  height: 46px;
  margin-top: 12px;
  padding: 6px 8px 6px 32px;
  font-size: 14px;
  line-height: 1.21429;
  color: rgba(0, 0, 0, 0.45);
  border-radius: 2px;
  background: #ebebeb;
}
@media only screen and (max-width: 767.98px) {
  .cart-form-counts {
    margin-top: 10px;
    padding: 4px 6px 4px 30px;
    font-size: 13px;
    line-height: 1.23077;
    border-radius: 2px;
  }
  .cart-form-counts:before {
    top: 4px;
    left: 6px;
  }
}
.cart-form-counts:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 8px;
  width: 16px;
  height: 16px;
  background-image: url(../images/icons/warning.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.cart-item-check {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-right: -12px;
}
@media only screen and (max-width: 767.98px) {
  .cart-item-check {
    margin-right: -10px;
  }
}
.cart-item-check input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.cart-item-check input:checked ~ .cart-item-check__checkbox {
  border-color: #fff;
  background-image: url(../images/icons/check-3.svg);
}
.cart-item-check__checkbox {
  width: 100%;
  height: 100%;
  border: 2px solid #4E63A0;
  background: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
}