* { margin: 0; padding: 0;  }

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; 
}

h2 { color: #e1000f; margin-bottom: 10px; }

a.button,
button.button {
	display: inline-block;
	padding: 4px 30px;
	font-family: 'myriad-pro-condensed', sans-serif;
	font-size: 21px;
	color: #fff;
	background-color: #c90019;
	background-image: linear-gradient(to bottom, #e2001a, #af0917);
	text-align: center;
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
	outline: none;
	border: none;
	cursor: pointer;
}
a.button:hover,
button.button:hover,
a.button:focus,
button.button:focus {
	background-image: linear-gradient(to bottom, #f22425, #bd2120);
}
a.button:active,
button.button:active {
	background-image: none;
	background-color: #d52222;
}
.button.action {
	padding-left: 0;
}
.button.action:before {
	content: "";
	display: inline-block;
	width: 13px; height: 13px;
	margin: 0px 18px 0 9px;
	background: transparent url('../img/icon/icon_double_arrow_right.svg') no-repeat 0px -36px;
	background-size: 13px auto;
}

/** standard grid base **/
.row:before,
.row:after {
	content: "";
	display: table;
}
.row:after {
	clear: both;
}
.col {
	float: left;
	position: relative;
}
/* large */
.col-1 { width: 8.33333%; }
.col-2 { width: 16.66667%; }
.col-3 { width: 25%; }
.col-4 { width: 33.33333%; }
.col-5 { width: 41.66667%; }
.col-6 { width: 50%; }
.col-7 { width: 58.33333%; }
.col-8 { width: 66.66667%; }
.col-9 { width: 75%; }
.col-10 { width: 83.33333%; }
.col-11 { width: 91.66667%; }
.col-12 { width: 100%; float: none; }

body {
	padding: 8px 30px;
	font-family: 'myriad-pro', sans-serif;
	font-size: 14px;
}

a { color: #e1000f; }

.mailform .row {
	margin-bottom: 6px;
}
.mailform label {
	float: left;
	width: 280px;
}
.mailform input[type="text"],
.mailform input[type="password"],
.mailform textarea,
.mailform select {
	width: 250px;
	padding: 5px 7px;
	border: 1px solid #999;
	font-family: 'myriad-pro';
}
.mailform textarea {
	width: 320px;
	min-height: 120px;
}
.mailform select {
	padding-left: 4px;
}
.mailform input[type="text"]:focus,
.mailform input[type="password"]:focus,
.mailform textarea:focus {
	border-color: #777;
	box-shadow: 2px 2px 5px 0 #ddd inset;
}
.mailform input[type="text"].has-error,
.mailform input[type="password"].has-error,
.mailform textarea.has-error {
	border-color: #e1000f;
}
.mailform label.has-error,
.mailform p.error { 
	color: #e1000f;
}
.mailform p.error-hint {
	color: #e1000f;
	margin-bottom: 2px;
}
.mailform .errors {
	margin-bottom: 14px;
}
.mailform .required-mark { margin-left: 3px; }
.mailform [type="submit"] {
	margin-top: 20px;
	margin-left: 280px;
}
.mailform .hint { margin-top: 30px; }

.checkbox-items {
	float: left;
}
.mailform .checkbox-items--label { 
	float: none;  
	margin-left: 3px;
}
.mailform .checkbox-items--item { 
	float: left;
	margin-right: 8px;
}
.mailform .checkbox-items--checkbox { position: relative; top: 1px;  } 

.mailform .row.with-checkbox label { width: 400px;  }

.mailform .row.with-checkbox .label-full {
	width: 100%;
}
.mailform .row.with-checkbox .label-full input[type="checkbox"] {
	float: left;
	margin-right: 8px;
	margin-top: 3px;
}
.mailform .row.with-checkbox:last-child {
	padding-bottom: 5px;
	margin-bottom: 5px;
}
.quickcontact--include h2 {
	font-size: 30px;
}