@charset "UTF-8";
/* CSS Document */


/* User select none items */
.file-drag p {
    -webkit-user-select: none;  /* Chrome all / Safari all */
    -moz-user-select: none;     /* Firefox all */
    -ms-user-select: none;      /* IE 10+ */
    user-select: none;          /* Likely future */
}
#form-section {
}
#form-nav {
}
#form-cta {
}
/*Step x of x */
#form-step {
    font-size: 16px;
    font-size: 1.6rem;
    margin: 0 0 10px 0;
    color: #444;
}
/*Fieldset reset*/
fieldset {
    float: left;
    width: 100%;
    padding: 0;
    border: none;
}
/* Conditional question container */
.conditional {
    width: 100%;
    box-sizing: border-box;
    padding: 0 0 0 30px;
    border-left: #0059AA 4px solid;
    margin: 0 0 30px 0;
}
.conditional .input-group:last-child, .conditional div:last-child {
    margin-bottom: 0px !important;
}
/* Wrap all form elements - The form grey container */
.inputs {
    float: left;
    box-sizing: border-box;
    width: 100%;
    background: #FAFAFA;
    padding: 30px 35px 0 35px;
    margin: 0 0 20px 0;
}
/* Wrap each form group - question, description, field(s) */
.input-group {
    float: left;
    width: 100%;
    margin: 0 0 30px 0;
}
/* Standard label - full width above input */
.input-group label, .input-group .label {
    display: block;
    width: 100%;
    font-size: 20px;
    font-size: 2.0rem;
    line-height: 26px;
    line-height: 2.6rem;
    font-weight: 700;
    margin: 0 0 10px 0;
}
/* Standard label or legend - full width above input */
legend {
    display: block;
    width: 100%;
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 28px;
    line-height: 2.8rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    padding: 0;
}
/* Field description - span inside labels */
.input-group label span, legend span, .input-group .label span {
    display: block;
    width: 100%;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 26px;
    line-height: 2.6rem;
    font-weight: 400;
    color: #555;
    margin: 10px 0 15px 0;
    padding: 0;
}
.inputs select:focus {
    outline: 3px solid #FFCC33 !important;
}
/*Global base input styles */
input[type=text], input[type=email], input[type=number], input[type=url], input[type=tel], input[type=date], input[type=password], select, textarea {
    float: left;
    border: 1px solid #D8D8D8;
    outline: 0;
    width: 100%;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: normal;
    vertical-align: baseline;
    font-family: 'Source Sans Pro', Arial, sans-serif;
    -webkit-border-radius: 0;
    border-radius: 0;
}
/*Full width inputs */
input[type=text], input[type=email], input[type=number], input[type=url], input[type=tel], input[type=password], select {
    background: #FFF;
    box-sizing: border-box;
    padding: 0 10px;
    line-height: 50px;
}
/*Text area formatting*/
textarea {
    box-sizing: border-box;
    border-radius: 0px;
    padding: 10px;
}
/*Drop select with padding for icon*/
select {
    /*-webkit-appearance: none;*/
    height: 50px;
    padding: 0 55px 0 10px;
}
/*Custom drop select*/
.box-select select {
    background: #FFF url(../img/site/box-select.gif) no-repeat right;
    background-size: 50px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0px;
}

/*Hide the default drop select arrows*/
 select::-ms-expand {
 display: none;
}
/*Short text fields*/
.c-max-ten {
    max-width: 220px;
}
.c-max-five {
    max-width: 160px;
}
.c-max-four {
    min-width: 15px;
    max-width: 75px;
    margin: 0 15px 0 0;
    text-align: center;
}
.c-max-two {
    max-width: 75px;
}
/*RADIOS */


/* Wrapper to format custom radios and checkboxes */

.radio, .checkbox {
    display: block;
    float: left;
    position: relative;
    width: 100%;
}
/* Customize the label (the container) */

.radio label, .checkbox label {
    display: block;
    float: left;
    padding: 7px 0 0 55px;
    width: 100%;
    position: relative;
    cursor: pointer;
    box-sizing: border-box;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-right: 15px;
    font-weight: 400 !important;
    font-size: 17px !important;
    line-height: 26px !important;
    box-sizing: border-box;
    min-height: 40px;
}
.multiline {
    margin-top: 10px;
    padding: 0 0 0 55px !important;
}
/* Hide the browser's default radio button */
.radio input, .checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    left: 0;
}
/* Create a custom radio button */
.radiomark {
    position: absolute;
    border: 1px solid #D8D8D8;
    height: 40px;
    width: 40px;
    margin: 0;
    background-color: #FFF;
    border-radius: 50%;
    top: 0;
    left: 0;
    pointer-events: none;
}
/* On mouse-over, add a grey background color */
.radio:hover input ~ .radiomark {
    background-color: #FFF;
}
/* When the radio button is checked, add a blue background */
.radio input:checked ~ .radiomark {
    background-color: #FFF;
}
/* Create the indicator (the dot/circle - hidden when not checked) */
.radiomark:after {
    content: "";
    position: absolute;
    display: none;
}
/* Show the indicator (dot/circle) when checked */
.radio input:checked ~ .radiomark:after {
    display: block;
}
/* Style the indicator (dot/circle) */
.radio .radiomark:after {
    position: absolute;
    top: 11px;
    left: 11px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #0059AA;
}
/* Inline radios */
.inline {
    display: inline-block !important;
    margin-right: 25px !important;
    float: left;
    width: auto !important;
}
/* Radio focus */
.radio input:focus + label, .checkbox input:focus + label {
    outline: 3px solid #FFCC33 !important;
    z-index: 999;
}
/* Radio focus */
.radio:not(:focus) + label, .checkbox input:not(:focus) + label {
    outline: none;
}
/* Validater */
.valid-error {
    width: 100%;
    box-sizing: border-box;
    padding: 0 0 0 30px;
    border-left: #D2232A 4px solid;
    margin: 0 0 30px 0;
}
.field-error-text {
    color: #D2232A !important;
    padding-top: 10px;
    margin: 0 !important;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 26px;
    line-height: 2.6rem;
}
.field-error {
    border: none !important;
    outline: #D2232A 3px solid !important;
}
/*CHECKBOXES */


/* Create a custom checkbox */
.checkmark {
    position: absolute;
    left: 0;
    top: 0;
    border: 1px solid #D8D8D8;
    height: 40px;
    width: 40px;
    background-color: #FFF;
    pointer-events: none;
}
/* On mouse-over, add a grey background color */
.checkbox:hover input ~ .checkmark {
    background-color: #FFF;
}
/* When the checkbox is checked, add a blue background */
.checkbox input:checked ~ .checkmark {
    background-color: #FFF;
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
/* Show the checkmark when checked */
.checkbox input:checked ~ .checkmark:after {
    display: block;
}
/* Style the checkmark/indicator */
.checkbox .checkmark:after {
    left: 15px;
    top: 8px;
    width: 10px;
    height: 15px;
    border: solid #0059A4;
    border-width: 0 4px 4px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.prefix, .postfix {
    float: left;
    display: inline-block;
    font-weight: 600;
    color: #555;
    line-height: 50px;
    font-size: 19px;
    font-size: 1.9rem;
}
.prefix {
    padding-right: 10px;
}
.postfix {
    padding-left: 10px;
}
.stacked-field {
    margin-bottom: 10px;
}
/* Wrap each form group - question, description, field(s) */
.output-group {
    float: left;
    width: 100%;
    margin: 0 0 30px 0;
}
.data-confirm {
    display: table;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 15px;
    border: 2px solid;
    font-weight: 400;
    color: #000000 !important;
    font-size: 19px !important;
    line-height: 28px !important;
    vertical-align: middle;
    margin-bottom: 0 !important;
    border-color: #008920;
}
.data-confirm ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
}
.data-confirm li {
    margin: 0 !important;
}
.output-large {
    display: table-cell;
    float: none !important;
    margin: 0 !important;
    font-size: 22px !important;
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    vertical-align: middle;
}
.output-regular {
    display: table-cell;
    float: none !important;
    margin: 0 !important;
    font-size: 18px !important;
    font-size: 1.8rem !important;
    font-weight: 400 !important;
    vertical-align: middle;
}
.output-large i {
    font-size: 85% !important;
    padding: 0 8px 0 0;
    color: #008920 !important;
    display: table-cell;
    vertical-align: middle;
    height: 100%;
}
.data-confirm a {
    display: table-cell;
    vertical-align: bottom;
    float: none;
    white-space: nowrap;
    font-size: 17px;
    font-size: 1.7rem;
    font-weight: 600 !important;
}
.data-confirm a i {
    font-size: 85% !important;
    padding: 0 3px 0 0;
    color: #000 !important;
    display: table-cell;
    vertical-align: middle;
    height: 100%;
    width: 20px;
}
.data-confirm span {
    display: table-cell;
    vertical-align: middle;
    text-align: left;
}
.inputs .cta-ghost {
    background: #FFF;
}
#postcode {
    text-transform: uppercase;
}
/*content area below 768 (takes into calculation left menu 320) */

.minimal {
    border: none;
    padding: 0 0 15px 0;
    border-bottom: 1px solid #d8d8d8;
}
.inputs label em, .inputs .label em {
    font-weight: 400 !important;
    display: inline;
    color: #000;
    text-emphasis: none;
    font-style: normal;
}
/*Edit links*/
.dataicon a i, .sitewideicon a i {
    color: #000000;
    text-decoration: none;
}
.dataicon a {
    white-space: nowrap;
    float: right;
    margin-left: 10px;
    font-size: 15px;/*Fallback*/
    font-size: 1.5rem;/*=17px*/
    color: #0059A4;
    text-decoration: underline;
    font-weight: 600;
}
.user-edit {
    float: left;
    margin: 0 0 0 20px;
    line-height: 50px;
}
.dataicon-multi {
    display: block;
    white-space: nowrap;
    text-align: right;
    float: right;
    min-width: 200px;
}
.dataicon-multi .dataicon {
    width: 100%;
}
.dataicon a:hover {
    color: #3399cc;
}
.dataicon a:hover i {
    color: #000;
}
.file-drag {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    background: #FFF;
    border: solid 3px #d8d8d8;
    height: 180px;
    margin: 0 0 30px 0;
}
.file-drag p {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    font-size: 20px;
    font-size: 2.0rem;
    color: #555;
    font-weight: 700;
}
.file-drag p i {
    color: #555;
}
.file-drag:hover {
    background: #F5FAF6;
    border: solid 3px #d8d8d8;
}
.file-drag:hover p, .file-drag:hover p i {
    color: #008920;
}

@media only screen and (max-width: 768px) {
#form {
    padding: 25px 25px 25px 25px;
}
.inputs {
    padding: 25px 15px 0 15px;
    margin: 0 0 15px 0;
}
/*Global input styles */
input[type=number], input[type=text], input[type=email], input[type=url], input[type=tel], input[type=date], input[type=password] {
    font-size: 17px;
    line-height: 40px;
}
textarea {
    font-size: 17px;
    font-size: 1.7rem;
}
.input-group {
    margin: 0 0 25px 0;
}
.input-group label, .input-group .label {
    font-size: 19px;
    font-size: 1.9rem;
    line-height: 28px;
}
.input-group label span, .input-group .label span {
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 26px;
    margin: 5px 0;
}
.c-max-four {
    max-width: 60px;
    margin: 0 10px 0 0;
}
#form-step {
    font-size: 15px;
    font-size: 1.5rem;
}
}

/*content area below 768 (takes into calculation left menu 320) */
@media only screen and (max-width: 540px) {
.output-large {
    width: 100% !important;
    display: block;
    font-size: 20px;
    font-size: 2.0rem;
}
.output-regular {
    width: 100% !important;
    display: block;
    font-size: 17px;
    font-size: 1.7rem;
}
.data-confirm a {
    width: 100% !important;
    display: table;
    padding-top: 10px;
    font-size: 17px;
    font-size: 1.7rem;
}
}
