
/* Mobile-safe consent checkbox for purchase wizard */
.wizard-consent{
  display:flex !important;
  align-items:flex-start !important;
  justify-content:flex-start !important;
  gap:10px !important;
  direction:rtl;
  line-height:1.8;
  margin-top:14px !important;
  padding:0 !important;
  color:#43594d;
  font-size:14px;
  cursor:pointer;
}
.wizard-consent input[type="checkbox"]{
  appearance:auto !important;
  -webkit-appearance:checkbox !important;
  position:static !important;
  opacity:1 !important;
  pointer-events:auto !important;
  display:block !important;
  flex:0 0 20px !important;
  width:20px !important;
  height:20px !important;
  min-width:20px !important;
  max-width:20px !important;
  margin:3px 0 0 0 !important;
  padding:0 !important;
  border:0 !important;
  box-shadow:none !important;
  transform:none !important;
  accent-color:#18b84b;
}
@media (max-width:720px){
  .wizard-consent{
    width:100% !important;
    box-sizing:border-box;
    font-size:13px;
    gap:9px !important;
    margin-top:12px !important;
  }
  .wizard-consent input[type="checkbox"]{
    flex-basis:22px !important;
    width:22px !important;
    height:22px !important;
    min-width:22px !important;
    max-width:22px !important;
  }
}
