/*---------------------- MAIN ----------------------*/

*, ::after, ::before {
    box-sizing: border-box;
}
* {
    margin: 0;
}

body {
    background-color: #F4F5F6;
    color: #333333;
    padding: 0;
}

body, td, th, input, textarea, select, button {
    font-family: Roboto, sans-serif;
    font-size: 14px;
    line-height: 18px;
}

a, a:visited {
	color: #0278ae;
	text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

b, .bold {
    font-weight: 500;
}

.logoCyclos {
    float: left;
}

.logoStro {
    float: right;
    height: 50px;
}

.main {
    width:  990px;
    margin: 25px auto;
}

.mainForm {
    margin-top: 20px;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #D9D9D9;
    background-color: #FFFFFF;
    min-height: 300px;
}

.section {
    overflow: auto;
    position: relative;
}

.textBox {
    float: right;
    border-radius: 5px;
    width: 410px;
    margin: 3px 0px 0px 0px;
}

ul {
    margin: 0;
    padding: 4px 16px 0;
}

/*---------------------- HEADINGS ----------------------*/

.heading {
    color: #0278ae;
    border-bottom: 1px solid #D9D9D9;
    clear: both;
    font-weight: 500;
    font-size: 16px;
    margin: 20px 0 8px;
    padding-bottom: 8px;
}

.mainForm > .headingLite:first-of-type {
    margin-top: 0;
}

.mainHeading {
    margin-top: 0px;
    font-size: 24px;
    font-weight: normal;    
    margin: 0px 0 12px;
    padding-bottom: 12px;
    letter-spacing: -0.02em;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.9);
}

.subHeading {
    font-size: 22px;
    margin-top: 35px;
    font-weight: 400;
}

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

.formBox {
    float: left;
    width: 515px;
    display: table;
}

.formRow {
    height: 32px;
    display: table-row;
}

.fieldName {
    width: 175px;
}
.fieldName, .fieldText {
    display: table-cell;
    vertical-align: top;
    padding-top: 15px;
    padding-bottom: 7px;
}

.formRowError .fieldName {
	color: red;
} 

.fieldInput {
    width: 340px;
    display: table-cell;
    vertical-align: middle;
}

/*---------------------- INPUT FIELDS ----------------------*/

.textInput, .dateInput, select, textarea {
    border-radius: 2px;
    border: 1px solid #cccccc;
    color: #4c4c4c;
    background-color: #ffffff;
    padding: 8px;
    margin: 8px 0px;
    height: 32px;
}

.textInput:focus, .dateInput:focus, select:focus, textarea:focus {
    border: 1px solid #0278ae;
    outline: none;
}

.textInput, select, textarea {
    width: 100%;
}

textarea {
    height: 10em;
}

.dateInput, input[type=password], input[type=number], .smallInput {
    width: 200px;
}

.formRowError .textInput, .formRowError .dateInput, .formRowError select, .formRowError .checkInput {
    border-color: red;
}

.textInputsmall {
    width: 150px;
    float: right;
}

.fieldURL {
    font-size: 12px;
    font-style: italic;
    margin: 12px 10px 0 0;
    float: left;
    line-height: 24px;
}

input[type="radio"] {
    margin: 0px;
}

input[type="radio"],
input[type="checkbox"] {
    margin-right: 4px;
}
.required {
    color: red;
    font-size: 14px;
}

select {
    padding: 6px 4px;
}

.checkInput {
    margin: 2px 6px 0px 0px;
}

.fieldText span:not(:first-of-type),
.fieldInput span:not(:first-of-type) {
    margin-left: 10px;
}

.fieldInput span:first-child {
    margin-left: 0px;
}

.fieldText > label,
.fieldInput > label {
    margin: 0px 10px 0px 0px;
}

.rangeSeparator {
    margin: 0 4px !important;
}

.checkboxes > span {
    display: block;
    margin-left: 0px !important;
}
.fieldInput > span > input {
    margin-left: 0px;
}

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

.captchaInput {
    display: block;
    width: 100%;
    bottom:0px;
    padding: 0px 5px;
    border: 1px solid #BFBFBF;
    border-radius: 3px 3px 3px 3px;
    box-shadow: 1px 1px 3px #EEEEEE inset;
    color: #444;
    height: 25px;
}

.captchaRight {
    float: right;
    height: 60px;
    width: 130px;
    margin: 5px 0px;
}

.captchaText {
    font-size: 12.5px;
}

.captcha {
    margin: 5px 0px;
}

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

button {
    cursor: pointer;
    white-space: nowrap;
    border: none;
    border-radius: 2px;
    color: #fff;
    line-height: 14px;
    background-color: #f39523;
    height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 4px 24px;
    font-weight: 500;
    outline: none;
}

button:hover {
    background-color: #0278ae;
    outline: none;
}

button:disabled {
    background: #c5bbbb !important;
    border: none;
    cursor: default;
}

.buttonInput {
    padding: 16px 40px;
    font-size: 20px;
    height: auto;
    position: absolute;
    bottom: 0;
    right: 0;
}

.buttonTermsOfService {
    float: right;
    margin-top: 20px;
}

/*---------------------- POPUP ----------------------*/

.termsOfServicePopup {
    position: absolute;
    top: 10%;
    left: 50%;
    width: 50%;
    transform: translateX(-50%);
    background-color: #FFFFFF;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    box-shadow: 0px 3px 8px 0 #777777;
    padding: 25px;
    display: block;
    z-index: 1000;
}

.termsOfServiceText {
    width: 100%;
    margin-bottom: 10px;
}

.glassOverlay {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    opacity: 0.8;
    z-index: 1000;
}

/*---------------------- VALIDATION ----------------------*/

.validation {
    border: 1px solid #EC6E6E;
    color: #333333;
    border-radius: 4px;
    clear: both;
    overflow: auto;
    padding: 12px 22px;
    margin-bottom: 20px;
    background: url("../images/error.png") no-repeat scroll right 12px top 7px #FDF1EE;
    display: block;
}

/*---------------------- SPINNER ----------------------*/

.confirmSpinner {
    margin-top: 60px;
    text-align: center; 
}

.spinnerBoxes {
    display: inline-block;
    white-space: nowrap;
    text-align: center;
}
.spinnerBox {
    float: left;
    height: 5px;
    margin-right: 2px;
    width: 18px;
    background-color: #8193B6;
}
.spinnerBox-highlight {
    background-color: #FF6600;
}
