.su-step-list{
	padding: 0;
	margin: 2rem 0 3rem 0;
	list-style: none;
}
.su-step-item{
	margin: 0 0 2rem 0;
}
.su-step-heading{
	padding: 0;
	background-color: #49d8dd;
	color: #fff;
	font-size: 1.5rem;
}
.su-step-number{
	padding: 1rem 2rem;
	display: inline-block;
	background: rgba(0,0,0,0.1);
    text-align: center;
}
.su-step-text{
	padding: 1rem;
	display: inline-block;
}
.su-note-text{
	padding: 1rem 0;
	color: #d4145a;
}
.su-form-group{
	padding: 0;
	list-style: none;
	max-width: 900px;
}
.su-form-item{
	margin: 1rem;
	display: flex;
}
.su-form-label{
	margin: 1rem 1rem 0 0;
	width: 30%;
}
.su-form-field{
	width: 80%;
}
.su-form-input{
	padding: 0.75em 1em;
	width: 100%;
	background-color: #fff;
	border-radius: 0.3em;
	border: 0;
	transition: 0.1s;
	border: 2px solid #eee;
}
.su-form-helper{
	margin: 0;
	padding: 0;
	opacity: 0.5;
}
.su-form-item:hover .su-form-helper{
	opacity: 1;
}
.su-form-checkbox{

}
.su-form-checkbox-label{
	margin-left: 1rem;
}
.su-step-submit{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin-top: 4rem;
	padding: 4rem 0;
	border-top: 2px solid #49d8dd;
}
.su-submit-button{
	padding: 1rem 2rem;
	font-size: 1.2rem;
	background-color: #d4145a;
	color: #fff;
	border: none;
	border-radius: 5px;
	transition: 0.2s;
}
.su-submit-button:not(:disabled):hover{
	cursor: pointer;
	background-color: #1b1b3a;
	color: #fff;
	transform: scale(1.1);
}



.su-submit-button:disabled{
	background-color: #ddd;
	color: #fff;
}




.su-submit-text{
	text-align: center;
	margin-bottom: 2rem;
	max-width: 800px;
}


.su-form-checkbox-label {
  padding-left: 35px;
  cursor: pointer;
  font-size: 1.1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.su-form-checkbox-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.su-form-checkbox-label:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.su-form-checkbox-label input:checked ~ .checkmark {
  background-color: #d4145a;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.su-form-checkbox-label input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.su-form-checkbox-label .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.terms-validation{
	color: #d4145a;
	font-weight: bold;
}


.contract-list{
	margin-bottom: 1rem;
	padding: 0;
	display: flex;
}
.contract-item{
	margin: 0 2rem;
	list-style: none;
	text-align: center;
}
.contract-cost{
	display: block;
	background-color: #1b1b3a;
	color: #fff;
	padding: 1rem 2rem;
	border-radius: 100em;
}
.contract-discount-text{
	display: block;
	margin-bottom: 0;
	font-size: 1rem;
	font-weight: 600;	
}
.contract-discount-price{
	display: block;
	margin-bottom: 0;
	font-size: 2rem;
	font-weight: 600;
}
.contract-price{
	display: block;
	margin-bottom: 0;
	font-size: 2rem;
	font-weight: 600;
}
.contract-vat{
	display: block;
	margin-top: -0.5rem;
	font-size: 0.8rem;
}
.contract-occurence{
}
.contract-caveat{
	margin-top: 0.5rem;
	display: block;
	font-style: italic;
	color: #d4145a;
	font-weight: 600;
}