.page-audit-form-wrap h2.page-audit-title {
	margin-bottom: 0.25em;
	display: block;
}

.audit-group-next {
	display: none;
}
.page-audit-form-wrap {
	background: #ee5b2f;
	color: white;
	padding: 3rem;
}

.page-audit-form {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.audit-field {
	width: 100%;
	border: solid 1px white;
	padding: 1rem;
	border-radius: 6px;
	margin-bottom: 1rem;
	align-items: center;
	color: #333333;
}

.audit-field:focus {
	border-color: #333333;
}

.audit-field.field-fault {
	border-color: #333333;
}

.audit-field::placeholder {
	color: #777777;
}

/* Custom Checkbox */

.audit-checkbox {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

/* Create a custom checkbox */
.audit-checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #eee;
	margin-right: 10px;
  }
  
/* On mouse-over, add a grey background color */
.confirm-label:hover input ~ .audit-checkmark {
	background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.confirm-label input:checked ~ .audit-checkmark {
	background-color: #333333;
}

/* Create the checkmark/indicator (hidden when not checked) */
.audit-checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
.confirm-label input:checked ~ .audit-checkmark:after {
	display: block;
}

/* Style the checkmark/indicator */
.confirm-label .audit-checkmark:after {
	left: 8px;
	top: 4px;
	width: 8px;
	height: 13px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.confirm-label {
	display: flex;
}

.audit-submit {
	padding: 1rem 2.5rem;
	border: none;
	/* color: #ee5b2f; */
	/* background: white; */
	color: white;
	background: #333333;
	border-radius: 6px;
	margin-top: 1rem;
	opacity: 1;
	transition: all 0.2s;
}

.status-message-content {
	background: #333333;
	color: white;
	padding: 0.5rem;
	border-radius: 6px;
	margin-bottom: 1rem;
}

.status-message {
	display: none;
	padding: 1rem;
}

.status-message.field-fault {
	display: block;
}

.audit-submit:hover {
	opacity: 0.9;
}

.audit-submit.disabled {
	opacity: 0.5;
	background-color: white;
	color: #ee5b2f;
}

@media only screen and (min-width: 768px) {
	.page-audit-form {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.audit-group {
		flex: 0 0 25%;
		padding: 0 1rem;
	}

	.audit-submit {
		margin-right: 1rem;
		margin-top: 0;
		font-size: 1.4rem;
	}

	.audit-group.audit-group-checkbox {
		flex: 0 0 80%;
	}
	.audit-group-checkbox span {
		margin-top: 4px;
	}
	h2.page-audit-title {
		margin-left: 1rem;
	}
}

.ht {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	height: 0;
	width: 0;
	z-index: -1;
}

/* Errors */
.audit-group small {
	color: black;
}

.audit-group span {
	position: relative;
}

.audit-group span i {
	height: 20px;
	width: 20px;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translate(0, -50%);
	background-size: 20px 20px;
}
.audit-cross {
	background-image: url(./img/cross-circle-solid.svg);
}

.audit-error {
	color: red;
	border: 2px solid black;
}

/* Pass */

.audit-tick {
	background-image: url(./img/check-circle-solid.svg);
}

.audit-pass {
	color: green;
	border: 2px solid green;
}