#cartModal .checkout-button-wrapper {
	display: block;
}
.checkout-page .checkout-button-wrapper {
	display: none;
}

.delivery-wrapper .form-field input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid var(--primary-color);
  background-color: none;
  position: relative;
  margin-right: 8px;
  border-radius: 0px;
}
.delivery-wrapper .form-field input[type="checkbox"]:checked:after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  background: url(../images/tick.svg);
  content: "";
}