.cancellations-form--field {
	margin: 0 auto 2em auto;
	clear: both;
	line-height: 1.5em;
}

.cancellations-form--field.your-name {
	float: left;
	width: calc(50% - 1em);
}

.cancellations-form--field.your-phone {
	float: right;
	clear: none;
	width: calc(50% - 1em);
}

.cancellations-form--field label {
	display: block;
}

.cancellations-form--field input {
	display: block;
	font: inherit;
	padding: 0.5em 1em;
	border: 1px solid #cccccc;
	background: white;
	color: inherit;
	outline: 0;
	width: 100%;
	box-sizing: border-box;
}

.cancellations-form--field input:focus {
	border-color: #353535;
}

.cancellations-form--field select {
	display: block;
	width: 100%;
	padding: 0.5em 1em;
	border: 1px solid #cccccc;
	background: white;
	color: inherit;
	font: inherit;
	cursor: pointer;
}

.cancellations-form--field select:focus {
	border-color: #353535;
}

.cancellations-form--checkboxes {
	margin: 0 auto 2em auto;
	clear: both;
	line-height: 1.5em;
}

.cancellations-form--checkboxes-checkbox {
	display: inline-block;
	position: relative;
	overflow: hidden;
	margin: 1em 2em 0 0;
	position: relative;
	font-size: 0.8em;
}

.cancellations-form--checkboxes-checkbox input {
	position: absolute;
	top: 0;
	right: 100%;
}

.cancellations-form--checkboxes-checkbox input + label {
	display: block;
	cursor: pointer;
}

.cancellations-form--checkboxes-checkbox input + label::before {
	content: "";
	display: inline-block;
	width: 1em;
	height: 1em;
	border: 1px solid #CCCCCC;
	background: white;
	vertical-align: middle;
	margin: 0 0.5em 0 0;
	text-align: center;
	line-height: 1em;
}

.cancellations-form--checkboxes-checkbox input:checked + label::before {
	content: "\2713";
}

.cancellations-form--checkboxes-checkbox input + label:hover::before {
	border-color: #757575;
}

.cancellations-form--submit {
	margin: 2em auto;
}

.cancellations-form--submit input,
.cancellations-form--submit button {
	display: inline-block;
	background: black;
	color: white;
	font: inherit;
	padding: 0.5em 1em;
	width: auto;
	border: none;
	cursor: pointer;
	border-radius: 0.4em;
}

.cancellations-form--submit input:hover,
.cancellations-form--submit button:hover {
	background: #353535;
}

.cancellations-form--error {
	margin: 1em 0;
	padding: 0.5em 1em;
	background: #FFCCCC;
	border: 1px solid #753525;
	color: #753525;
}

.cancellations-form--thanks {
	font-weight: bold;
	font-size: 2em;
	line-height: 1.5em;
	margin: 0 0 1em;
}