/* FONTS: 
PAGE-TITLE:: "industry-inc-stencil",sans-serif
h1: "industry-inc-inline", sans-serif;
h3, h4: "industry-inc-outline", sans-serif;
h2: "industry-inc-in-n-out", sans-serif;
p: font-family: "nimbus-sans", sans-serif;
    font-weight: 300;
*/

.form-wrapper {
    margin-top: 20px;
}

.form-all {
    width: 100%;
    color: black !important;
    font-family: "nimbus-sans", sans-serif;
    font-weight: 300;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center top;
    background-repeat: repeat;
    font-size: 16px;
}

.ie-8 .form-all {
    margin-top: auto;
    margin-top: initial;
}

.ie-8 .form-all:before {
    display: none;
}

.form-section {
    padding: 0px 0px 0px 0px;
}

.form-line {
    width: 100%;
    margin-top: 12px;
    margin-bottom: 12px;
    padding: 0;
}


/* FORM LABELS 
--------------------------------*/

.form-label {
    white-space: normal;
    text-transform: uppercase;
    font-weight: bold;
    font-family: "industry-inc-outline", sans-serif;
    font-size: 20px;
}

.form-label-left {
    /*width: 185px !important;*/
    display: inline-block;
    white-space: normal;
    float: left;
    text-align: left;
}

.form-label-right {
    display: inline-block;
    white-space: normal;
    float: left;
    text-align: right;
    /*width: 185px !important;*/
}

.form-label-top {
    white-space: normal;
    display: block;
    float: none;
    text-align: left;
    border-bottom: 1px #b10909 solid;
    margin-bottom: 10px;
}

.form-sub-label-container {
    width: 100%;
}

.form-sub-label {
    font-size: 12px;
    color: #000000;
}

.form-label-top,
.form-label-left,
.form-label-right,
.form-html {
    color: #000000;
}

/* end FORM LABELS 
--------------------------------*/


/* RADIO BUTTONS 
--------------------------------*/

.form-checkbox-item label,
.form-radio-item label {
    font-size: 13px;
     color: black;
    font-family: "nimbus-sans", sans-serif;
    font-weight:100;
}

.form-radio-item,
.form-checkbox-item {
    padding: 0;
    padding-bottom: 0px !important;
}

.form-radio-item:last-child,
.form-checkbox-item:last-child {
    padding-bottom: 0;
}

.form-single-column .form-checkbox-item,
.form-single-column .form-radio-item {
    width: 100%;
}

.control {
	font-size: 18px;
	position: relative;
	display: block;
	margin-bottom: 15px;
	padding-left: 30px;
	cursor: pointer;
}

.control input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}

.control__indicator {
	position: absolute;
	top: 2px;
	left: 0;
	width: 20px;
	height: 20px;
	background: rgba(0, 0, 0, 0.14);
    border: 1px solid black;
}

.control--radio .control__indicator {
	border-radius: 50%;
}

/* Hover and focus states */
.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
	background: rgba(0, 0, 0, 0.14);
}

/* Checked state */
.control input:checked ~ .control__indicator {
	background: #b10909;
}

/* Hover state whilst checked */
.control:hover input:not([disabled]):checked ~ .control__indicator,
.control input:checked:focus ~ .control__indicator {
	background: #b10909;
}

/* Disabled state */
.control input:disabled ~ .control__indicator {
	pointer-events: none;
	opacity: .6;
	background: #e6e6e6;
}

/* Radio button inner circle */
.control--radio .control__indicator:after {
	top: 7px;
	left: 7px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: black;
}

/* Disabled circle colour */
.control--radio input:disabled ~ .control__indicator:after {
	background: #7b7b7b;
}

/* PULL DOWN SELECT 
----------------------------------------*/

.select {
	position: relative;
	display: inline-block;
	width: 100%;
	margin-bottom: 0px;
}

.select select {
	display: inline-block;
	width: 100%;
	padding: 4px 3px 2px 3px;
    padding-left: 10px;
    line-height: 30px;
	cursor: pointer;
	color: black;
	border: 0;
	border-radius: 0;
	outline: 0;
	background: rgba(0, 0, 0, 0.14);
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
    border: 1px dashed black;
}

.select select::-ms-expand {
	display: none;
}

.select select:hover,
.select select:focus {
	color: black;
	background:rgba(0, 0, 0, 0.14);
}

.select select:disabled {
	pointer-events: none;
	opacity: .5;
}

.select__arrow {
	position: absolute;
	top: 16px;
	right: 15px;
	width: 0;
	height: 0;
	pointer-events: none;
	border-width: 8px 5px 0 5px;
	border-style: solid;
	border-color: black transparent transparent transparent;
}
.select select:hover ~ .select__arrow,
.select select:focus ~ .select__arrow {
	border-top-color: #000;
}

.select select:disabled ~ .select__arrow {
	border-top-color: #ccc;
}

/* TEXT BOXES and TEXT AREAS 
----------------------------------------*/

.form-textbox,
.form-textarea {
    padding: 4px 3px 2px 3px;
    width: 100%;
    border: none;
    background: transparent;
    border: 1px dashed black;
    background-color: rgba(0, 0, 0, 0.14);
}

.form-textbox {
    line-height: 30px;
    padding-left: 10px;
}





/* ERROR MESSAGE STYLINGS
------------------------------------*/

.form-line-error {
    overflow: hidden;
    -webkit-transition-property: none;
    -moz-transition-property: none;
    -ms-transition-property: none;
    -o-transition-property: none;
    transition-property: none;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -ms-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    background-color:transparent;
}
.form-line-error .form-error-message {
    background-color: #b10909;
    clear: both;
    float: none;
}

.form-line-error .form-error-message .form-error-arrow {
    border-bottom-color: #b10909;
}

.form-line-error input:not(#coupon-input),
.form-line-error textarea,
.form-line-error .form-validation-error {
    border: 1px solid #b10909;
    -webkit-box-shadow: 0 0 3px #b10909;
    -moz-box-shadow: 0 0 3px #b10909;
    box-shadow: 0 0 3px #b10909;
}


/* END - error message stylings
------------------------------------*/


/* "REQUIRED" asterisk  
------------------------------------*/

.form-required {
    color: #b10909;
}


/* RE-CAPTCHA 
------------------------------------*/

.form-captcha {
    width: 100%;
    background: transparent;
}

.form-captcha .form-textbox {
    width: 90%;
    margin-top: 10px;
}

.form-captcha input,
.form-spinner input,
.form-error-message {
    padding: 4px 3px 2px 3px;
}


/* FORM BUTTONS 
------------------------------------*/

.form-buttons-wrapper {
    padding: 0;
    width: 100%;
}

.form-all .qq-upload-button,
.form-all .form-submit-button,
.form-all .form-submit-reset,
.form-all .form-submit-print {
    font-family: "nimbus-sans", sans-serif;
    text-transform: uppercase;
}

.form-submit-button, .form-submit-reset {
    display: block;
    width: 100%;
    font-size: 18px;
    line-height: 40px;
    font-weight: 400;
}

.form-submit-button {}
.form-submit-reset {}

.form-submit-button:hover, .form-submit-reset:hover {
    color: black;
}


/* OTHER stuff 
-----------------------------*/

.form-header-group .form-header {
    color: #000000;
}

.form-header-group .form-subHeader {
    color: #000000;
}

.form-line.form-line-active {
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -ms-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -ms-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    background-color: transparent;
}

.form-header-group {
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center top;
    text-align: left;
    font-family: "nimbus-sans", sans-serif;
    font-weight: 300;
    margin: 12px 36px 12px 36px;
    padding: 24px 0px 24px 0px;
}

.form-all .form-pagebreak-back,
.form-all .form-pagebreak-next {
    padding: 9px 15px;
    font-family: "nimbus-sans", sans-serif;
    font-weight: 300;
    font-size: 16px;
}

.form-line-column {
    width: auto;
}

/* Desktops and laptops ----------- */
@media only screen  and (min-width : 992px) {
    .form-submit-button:hover, .form-submit-reset:hover {
    color: white;
}
    
}

