/* styles necessary to highlight input fields having validation errors */
input.error {background-color: pink; border: 1px dashed red;}
textarea.error {background-color: pink; border: 1px dashed red;}

#jobticket_form_container input[type="checkbox"] {
  display: unset;
}

#jobticket_form_container h2 {
  font-size: 24px;
  line-height: 28px;
  font-weight: normal;
  margin-top: 25px;
  margin-bottom: 10px;
}

@media (min-width: 750px) {
  #jobticket_form_container h2 {
    font-size: 28px;
    line-height: 30px;
    margin-bottom: 15px;
  }
}

#jobticket_form_container .flex--right {
	display: flex;
	justify-content: flex-end;
	padding: 10px 0 20px 0;
}

@media(max-width: 400px) {
	#jobticket_form_container form {
	    margin-right: 0px;
	}
}

.breakpoint-1--one-quart {
	width:50%;
}

@media only screen and (min-width: 700px) {
	.breakpoint-1--one-quart {
		width:25%;
	}
}