
@import url('https://fonts.googleapis.com/css?family=Roboto:200,300,400,400i,500,700,700i&display=swap');


/*
####################################################
RESET
####################################################
*/

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

main {
    display: block
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

pre {
    font-family: monospace,monospace;
    font-size: 1em
}

a {
    background-color: transparent
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted
}

b, strong {
    font-weight: bolder
}

code, kbd, samp {
    font-family: monospace,monospace;
    font-size: 1em
}

small {
    font-size: 80%
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

img {
    border-style: none
}

button, input, optgroup, select, textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button, input {
    overflow: visible
}

button, select {
    text-transform: none
}

button, [type="button"], [type="reset"], [type="submit"] {
    -webkit-appearance: button
}

    button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
        border-style: none;
        padding: 0
    }

    button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
        outline: 1px dotted ButtonText
    }

fieldset {
    padding: .35em .75em .625em
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal
}

progress {
    vertical-align: baseline
}

textarea {
    overflow: auto
}

[type="checkbox"], [type="radio"] {
    box-sizing: border-box;
    padding: 0
}

[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
    height: auto
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

    [type="search"]::-webkit-search-decoration {
        -webkit-appearance: none
    }

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

details {
    display: block
}

summary {
    display: list-item
}

template {
    display: none
}

[hidden] {
    display: none
}


/*
####################################################
STYLES
####################################################
*/


:root {
    --primary: #1e5880; /*blue-1*/
    --secondary: #4daff3; /*light-blue*/
    --tertiary: #f2f9ff;
    --grey: #4D5565;
    --grey-2: #748094;
    --grey-3: #CDD5DF;
    --grey-4: #eeeeee;
    --grey-5: #f8f8f8;
    --black: #000000;
    --white: #ffffff;
    --text: #4a5568
}

/*For Ref*/

/*
16px = 1rem
18px = 1.125rem
20px = 1.25rem
*/

html {
    background: var(--white);
    font-size: 1rem;
    height: 100%;
    /*scroll-behavior: smooth;*/
    /*overflow-y: scroll;*/
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smooth: always;
    height: 100%;
    margin: 0;
    padding: 0;
    opacity: 1;
    font-size: 100%;
    color: var(--text);
    -webkit-transition: 1s opacity;
    -moz-transition: 1s opacity;
    -ms-transition: 1s opacity;
    transition: 1s opacity;
}

    body.fade-out {
        opacity: 0;
        transition: none;
    }

/* ====================================
   MAIN CONTAINERS
   ==================================== */

.content-wrapper {
    min-height: calc(100% - 3rem);
}

.login-wrapper {
    min-height: calc(50% - 3rem);
}

.container-fluid {
    margin: 0 0;
    padding: 0 0;
    position: relative;
}

.container-standard-width {
    position: relative;
    height: auto;
    max-width: 75rem; /*1200px*/
    margin: 0 auto;
}

#MainForm .container-standard-width {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

    #MainForm .container-standard-width:nth-of-type(3) {
        padding-bottom: 2rem;
    }

    #MainForm .container-standard-width:nth-of-type(3),
    #MainForm .container-standard-width:nth-of-type(5),
    #MainForm .container-standard-width:nth-of-type(7),
    #MainForm .container-standard-width:nth-of-type(9),
    #MainForm .container-standard-width:nth-of-type(11) {
        background: var(--grey-5);
    }

    #MainForm .container-standard-width:nth-of-type(14) {
        max-width: none;
        background: var(--grey-4);
        height: auto;
        text-align: center;
        margin-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

        #MainForm .container-standard-width:nth-of-type(13) button {
            margin: 0 auto;
        }

.top-container {
    margin-top: 7rem;
}

.page-width {
    max-width: 87.5rem; /*1400px*/
    margin: 0 auto;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.header-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.centered-container {
    margin: 0 auto;
    padding-top: 1rem;
    padding-bottom: 2.5rem;
}

    .centered-container h3 {
        margin-bottom: 2rem;
    }

.current-application {
    position: relative;
    margin-top: 1.5rem;
    padding: 1rem .4rem .8rem .8rem;
    border: 0.0625rem solid var(--secondary);
    background: var(--tertiary);
    width: 14rem;
    margin-right: 0;
}

.current-application-text {
    display: block;
    margin-top: 0;
    width: calc(58% - .3rem);
    padding-right: .15rem;
    font-size: .875rem;
}

.current-application-button {
    left: 60%;
    margin-top: -2.5rem;
    position: absolute;
    text-align: right;
    width: calc(40% - .15rem);
}

    .current-application-button button {
        margin-top: .5rem;
        width: 5rem;
    }

.more-info {
    margin-top: 4rem;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    font-size: .9rem;
}

::-moz-placeholder { /* Firefox 19+ */
    font-size: .9rem;
}

:-ms-input-placeholder { /* IE 10+ */
    font-size: .9rem;
}

:-moz-placeholder { /* Firefox 18- */
    font-size: .9rem;
}


/* ====================================
   STANDARD ITEMS
   ==================================== */

h1, .h1, .h2-as-h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    margin-top: .5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--primary);
}

.header-banner h1, .header-banner .h1, .header-banner .h2-as-h1 {
    font-size: 2rem;
    font-weight: 500;
    margin-top: .5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--primary);
    width: 80%;
}

.top-container h1, .top-container .h1, .top-container .h1, .top-container .h2-as-h1, .form-container-narrow h1, .form-container-narrow .h1, .form-container-narrow .h2-as-h1 {
    font-size: 2rem;
    font-weight: 500;
    margin-top: .5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--primary);
}

.form-container-home h1 {
    line-height: 1.3;
}

h2, .h2, .h1-as-h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 2.25rem;
    margin-top: .75rem;
    margin-bottom: .5rem;
}

.header-banner h2, .header-banner .h2, .header-banner .h1-as-h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-top: .5rem;
    margin-bottom: 3rem;
    line-height: 1.2;
    color: var(--primary);
    width: 80%;
}

.standard-form h2 {
    font-size: .875rem;
    margin-bottom: 1rem;
}

    .standard-form h2 span {
        background: #fde9d0;
        padding-left: .2rem;
        padding-right: .2rem;
    }

h3, .h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 1.125rem; /*18px*/
    margin-top: .35rem;
    margin-bottom: .25rem;
}

.header-banner h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 0.875rem; /*14px*/
    line-height: 1.3;
}

.current-application-input h3 {
    font-weight: 500;
    font-size: 1.25rem;
}

h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 1rem; /*16px*/
    margin-top: .15rem;
    margin-bottom: .25rem;
    line-height: 1.2;
}

h5 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 0.975rem;
    margin-top: .35rem;
    margin-bottom: .2rem;
}

.footer h5 {
    margin-bottom: 2rem;
}

.footer-message h5 {
    margin-top: 1.75rem;
    margin-bottom: 2rem;
    line-height: 1.3;
}

p {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 0.875rem; /*14px*/
    line-height: 1.3;
}

.footer-message p {
    margin-top: 2rem;
}

ul, ol {
    font-size: 0.875rem; /*14px*/
    line-height: 1.3;
}

    ul li {
        font-size: 0.875rem; /*14px*/
        line-height: 1.3;
        margin-top: .25rem;
        margin-bottom: .5rem;
    }

    ol li {
        font-size: 0.875rem; /*14px*/
        line-height: 1.3;
        margin-top: .25rem;
        margin-bottom: .5rem;
    }

img {
    width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--primary) !important;
    cursor: pointer !important;
}

    a:hover {
        text-decoration: none;
        color: var(--secondary) !important;
    }

.thankyou-container .login-link {
    color: unset !important;
    text-decoration: underline;
    cursor:pointer;
}

    .thankyou-container .login-link:hover {
        color: unset !important;
        text-decoration: underline;
    }

.thankyou-container a {
    text-decoration: none;
    color: #fff !important;
    font-size: 1.4rem;
    font-weight: 500;
    cursor: pointer !important;
}

    .thankyou-container a:hover {
        color: #fff !important;
    }

.radius {
    border-radius: 2rem;
}

.medium-radius {
    border-top-left-radius: 1.6rem;
    border-top-right-radius: 1.6rem;
    border-bottom-left-radius: 1.6rem;
    border-bottom-right-radius: 1.6rem;
}

.small-radius {
    border-top-left-radius: 1.3rem;
    border-top-right-radius: 1.3rem;
    border-bottom-left-radius: 1.3rem;
    border-bottom-right-radius: 1.3rem;
}


/* Custom text-selection colors */
::-moz-selection {
    background: var(--primary);
    color: var(--white);
    text-shadow: none;
}

::selection {
    background: var(--primary);
    color: var(--white);
    text-shadow: none;
}

.above-768 {
    display: none;
}

.above-992 {
    display: none;
}

.above-1100 {
    display: none;
}

.white {
    background: var(--white)
}

.light-blue {
    background: var(--tertiary);
}

.box-shadow {
    -moz-box-shadow: 0 0 0.3125rem var(--grey-2);
    -webkit-box-shadow: 0 0 0.3125rem var(--grey-2);
    box-shadow: 0 0 0.3125rem var(--grey-2);
}

.z3 {
    z-index: 3;
}

.z2 {
    z-index: 2;
}

.z-1 {
    z-index: -1 !important;
}

.centered {
    text-align: center;
}

.align-right {
    text-align: right;
}

    .align-right button {
        display: inline-block;
    }

.inline-block {
    position: relative;
    display: inline-block !important;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.overflow-y {
    overflow-y: visible;
}

.overflow-x-hidden {
    overflow-x: hidden;
}

.bold {
    font-weight: 700;
}

.apply-anchor {
    color: #4daff3 !important;
}

/* ====================================
   HEADER
   ==================================== */

header {
    position: fixed;
    top: 0;
    width: 100%;
    height: auto;
    padding: 0 0 1rem 0;
    margin: 0 0;
    background: var(--white);
    -moz-box-shadow: 0 0.5rem 0.4rem -0.4rem rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 0.5rem 0.4rem -0.4rem rgba(0,0,0,0.2);
    box-shadow: 0 0.5rem 0.4rem -0.4rem rgba(0,0,0,0.2);
    z-index: 3;
}

.header-logo {
    margin: .5rem auto 0 0;
    width: 7rem;
}

    .header-logo img {
        margin-top: 0;
    }

    .header-logo:hover {
        opacity: .7;
    }


.saved {
    width: 100%;
    margin-top: 2rem
}
.saved span { 
    position: absolute;
    display: block;
    top: 4.9rem; 
    left:1.9rem;
    font-size:.7rem !important;
}

.menu {
    width: 100%;
    margin-top: .5rem;
}

    .menu a {
        color: var(--text);
        margin-top: 1rem;
        margin-right: 1rem;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.4;
    }

.header-banner {
    position: relative;
    height: auto;
    min-height: 20rem;
    top: 7.1875rem;
    background: var(--tertiary);
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
    margin-bottom: 7rem;
    z-index: 1;
}

/* 
####################################################
VIDEO
#################################################### 
*/

.video-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

    .video-responsive iframe {
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        position: absolute;
    }



/*
####################################################
BUTTONS
####################################################
*/

.card, .btn, .form-control {
    border-top-left-radius: .6rem;
    border-top-right-radius: .6rem;
    border-bottom-left-radius: .6rem;
    border-bottom-right-radius: .6rem;
    padding: .5rem 1.5rem .6rem 1.5rem;
    border: 0.15rem solid;
    font-size: .875rem;
    cursor: pointer;
    box-sizing: border-box;
}

.form-radius {
    border-top-left-radius: .6rem;
    border-top-right-radius: .6rem;
    border-bottom-left-radius: .6rem;
    border-bottom-right-radius: .6rem;
}

.btn-s61-primary {
    text-decoration: none;
    color: var(--primary);
    background: var(--white);
    border-color: var(--primary);
    -webkit-appearance: none;
    -moz-appearance: none;
}

    .btn-s61-primary:visited {
        color: var(--primary);
        background: var(--white);
        border-color: var(--primary);
    }

    .btn-s61-primary:hover {
        color: var(--white);
        background: var(--secondary);
        ;
        text-decoration: none;
        border-color: var(--primary);
    }

    .btn-s61-primary:active {
        color: var(--white);
        background: var(--secondary);
        ;
        text-decoration: none;
        border-color: var(--primary);
    }

    .btn-s61-primary:focus, .btn-s61-primary.focus {
        color: var(--white);
        background: var(--secondary);
        ;
        text-decoration: none;
        outline: none;
    }

.btn-s61-small {
    display: block;
    margin-top: 1rem;
    padding: .25rem .75rem;
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem;
    border-bottom-left-radius: .3rem;
    border-bottom-right-radius: .3rem;
}

.btn-s61-secondary {
    text-decoration: none;
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
    -webkit-appearance: none;
    -moz-appearance: none;
}

    .btn-s61-secondary:visited {
        text-decoration: none;
        color: var(--white);
        background: var(--primary);
        border-color: var(--primary);
        -webkit-appearance: none;
        -moz-appearance: none;
    }

    .btn-s61-secondary:hover {
        text-decoration: none;
        color: var(--white);
        background: var(--secondary);
        ;
        border-color: var(--primary);
        -webkit-appearance: none;
        -moz-appearance: none;
    }

    .btn-s61-secondary:active {
        text-decoration: none;
        color: var(--white);
        background: var(--secondary);
        ;
        border-color: var(--primary);
        -webkit-appearance: none;
        -moz-appearance: none;
    }

    .btn-s61-secondary:focus, .btn-s61-secondary.focus {
        text-decoration: none;
        color: var(--white);
        background: var(--secondary);
        border-color: var(--primary);
        -webkit-appearance: none;
        -moz-appearance: none;
    }

.btn-s61-tertiary {
    text-decoration: none;
    color: var(--white);
    background: var(--secondary);
    border-color: var(--primary);
    -webkit-appearance: none;
    -moz-appearance: none;
}

    .btn-s61-tertiary:visited {
        text-decoration: none;
        color: var(--white);
        background: var(--secondary);
        border-color: var(--primary);
        -webkit-appearance: none;
        -moz-appearance: none;
    }

    .btn-s61-tertiary:hover {
        text-decoration: none;
        color: var(--white);
        background: var(--primary);
        ;
        border-color: var(--primary);
        -webkit-appearance: none;
        -moz-appearance: none;
    }

    .btn-s61-tertiary:active {
        text-decoration: none;
        color: var(--white);
        background: var(--primary);
        ;
        border-color: var(--primary);
        -webkit-appearance: none;
        -moz-appearance: none;
    }

    .btn-s61-tertiary:focus, .btn-s61-secondary.focus {
        text-decoration: none;
        color: var(--white);
        background: var(--primary);
        border-color: var(--primary);
        -webkit-appearance: none;
        -moz-appearance: none;
    }

.close-button {
    position: absolute;
    top: .25rem;
    right: .5rem;
    font-size: 2.5rem;
    background: transparent;
}

.close-button-grey {
    background: var(--grey-3);
    border: none;
    padding: .25rem 1.5rem;
}

    .close-button-grey:visited, .close-button-grey:hover, .close-button-grey:active, .close-button-grey:focus, .close-button-grey.focus {
        background: transparent;
        border: none;
        opacity: .7;
    }

.standard-input-button {
    padding: .75rem 1.75rem;
}

.centered-button {
    position: relative;
    margin-left: auto !important;
    margin-right: auto !important;
}

.small-button {
    padding: .2rem .4rem;
    font-size: .9rem;
}

.spaced-left-button {
    margin-left: 0;
}

.start-button {
    padding-top: .5rem;
    padding-bottom: .4rem;
    text-align: left;
    width: 16rem;
    font-weight: 400;
}

    .start-button:after {
        display: inline-block;
        margin-left: 1rem;
        content: url(..//img/right-arrow-white.svg);
        vertical-align: middle;
    }

.resume, .delete {
    min-width: 5rem;
    max-width: 5rem;
    margin-top: .75rem;
    text-align: left;
    padding-top: .4rem;
    padding-bottom: .3rem;
    padding-left: .2rem;
    padding-right: .2rem;
    font-weight: 400;
}

.delete {
    margin-top: -.35rem;
}

.resume:after {
    display: inline-block;
    margin-left: .25rem;
    content: url(..//img/right-arrow-white.svg);
    vertical-align: middle;
}

.delete:after {
    display: inline-block;
    margin-top: 0rem;
    margin-left: .7rem;
    content: url(..//img/dustbin.svg);
    vertical-align: middle;
}

.delete:hover {
    color: #fff !important;
}

    .delete:hover:after {
        content: url(..//img/dustbin-white.svg);
    }

/*
####################################################
UPLOADS
####################################################
*/
.floated-file-input {
    width: 13rem;
    height: 4.25rem;
    margin-right: 1.5rem;
    float: left;
    padding-top: 0;
}

    .floated-file-input .standard-input {
        font-size: .875rem !important;
        margin-top: -1rem;
    }

        .floated-file-input .standard-input input {
            margin-top: 0;
        }

.uploads-container {
    width: 100%;
    height: auto;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

    .uploads-container .container-standard-width {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

.upload-more-container {
    width: 100%;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    clear: both;
    background: transparent !important;
}

.remove-file {
    font-size: .8rem;
    text-decoration: underline;
    background: transparent;
    color: var(--primary);
    border: none;
    box-shadow: none;
    cursor: pointer;
    margin-left: -.2rem
}

.upload-more-files {
    margin-top: 0rem;
}

.smallprint {
    font-size: .7rem !important;
    margin-top: -.75rem !important;
}
/*
####################################################
TOOLTIPS
####################################################
*/

.help-tooltip {
    display: none;
    position: absolute !important;
    width: 16.5rem;
    height: auto;
    min-height: 12rem;
    margin-top: 1.5rem;
    left: 1.875rem;
    padding: 1rem 1rem 1rem 1rem;
    z-index: 999;
    background: #fff;
    border-radius: .3rem;
    border: var(--primary) 0.0325rem solid;
    -moz-box-shadow: 0 0.1rem 0.2rem .1rem rgba(0,0,0,0.1);
    -webkit-box-shadow: 0 0.1rem 0.2rem .1rem rgba(0,0,0,0.1);
    box-shadow: 0 0.1rem 0.2rem .1rem rgba(0,0,0,0.1);
}

.help-tooltip-shown {
    display: block;
}

.help-tooltip:after {
    content: '';
    position: absolute;
    left: 30px;
    top: -11px;
    width: 20px;
    height: 20px;
    background: inherit;
    transform: rotate(225deg);
    box-shadow: inset -0.0625rem -0.0625rem 0.0625rem -0.0625rem rgba(3.25,5,9,1);
}

.tooltip-inner {
    position: relative;
    padding: .2rem;
}

.example-particulars-dropdown, .example-development-dropdown, .example-hours-dropdown, .example-duration-dropdown, .example-list-dropdown, .example-minimise-dropdown, .example-pr-dropdown, .example-predicted-dropdown {
    height: 0;
    overflow-y: hidden;
    background: var(--grey-4);
}

.dropdown-open {
    height: auto;
    min-height: 2rem;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
}

.popup-open, .popup-open-hover {
    position: relative;
    -webkit-transition: opacity .3s ease;
    -moz-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    transition: opacity .3s ease;
}

.max-width-button {
    width: 100%;
}

/*
####################################################
INPUT
####################################################
*/

@supports(-webkit-appearance: none) or (-moz-appearance: none) {
    input[type='checkbox'],
    input[type='radio'],
    input[type='search'],
    input[type='submit'],
    input[type='file'] {
        -webkit-appearance: none;
        -moz-appearance: none;
    }
}

input[type='checkbox'],
input[type='radio'],
input[type='search'],
input[type='submit'],
input[type='file'] {
    -webkit-appearance: none;
    -moz-appearance: none;
    --focus: 0.0625rem rgba(39, 94, 254, .25);
    outline: none;
}

    input[type='checkbox']:focus,
    input[type='radio']:focus,
    input[type='search']:focus,
    input[type='submit']:focus {
        box-shadow: 0 0 0 var(--focus);
    }


/*
####################################################
FORMS
####################################################
*/

.standard-form {
    padding-top: .5rem;
    padding-bottom: .5rem;
}

.form-column {
    width: 100%;
}

.no-columns {
    width: 100%;
}

.standard-input {
    display: block;
    font-size: .875rem !important;
    color: var(--text);
    margin-top: .2rem;
    word-break: break-word;
}

    .standard-input .field-validation-error {
        color: red;
        font-size:1rem;
    }

    .standard-input p {
        margin-left: .8rem;
        text-indent: -.8rem;
    }

.example-particulars-dropdown p {
    margin-left: 0;
    text-indent: 0;
}

.example-particulars-dropdown p, .example-development-dropdown p, .example-hours-dropdown p, .example-duration-dropdown p, .example-list-dropdown p, .example-minimise-dropdown p, .example-pr-dropdown p, .example-predicted-dropdown p {
    margin-left: 0;
    text-indent: 0;
}

.current-application-input {
    margin-top: 3rem;
    max-width: 17rem;
}

.standard-input label {
    font-weight: 300;
}

.standard-input input[type=text], .standard-input textarea, .standard-input input[type=textarea], .standard-input input[type=email], .standard-input input[type=phone], .standard-input input[type=password], .standard-input select {
    width: 100%;
    padding: 0.45rem .75rem; /*12px 20px*/
    margin: 0.5rem 0;
    display: inline-block;
    border: 0.0625rem solid var(--primary);
    background-color: var(--white);
    box-sizing: border-box;
    cursor: pointer;
}

.standard-input input[type=date] {
    padding: 0.45rem .75rem; /*12px 20px*/
    margin: 0.5rem 0;
    display: block;
    border: 0.0625rem solid var(--primary);
    color: var(--text);
    background-color: var(--white);
    box-sizing: border-box;
    cursor: pointer;
    border-top-left-radius: .6rem;
    border-top-right-radius: .6rem;
    border-bottom-left-radius: .6rem;
    border-bottom-right-radius: .6rem;
}

.datepickerfield {
    padding: 0.45rem .75rem; /*12px 20px*/
    margin: 0.5rem 0;
    display: block !important;
    border: 0.0625rem solid var(--primary);
    color: var(--text);
    background-color: var(--white);
    box-sizing: border-box;
    cursor: pointer;
    border-top-left-radius: .6rem;
    border-top-right-radius: .6rem;
    border-bottom-left-radius: .6rem;
    border-bottom-right-radius: .6rem;
    max-width: 12rem;
}

.standard-input input[type='file'] {
    padding: 0.25rem .25rem;
    margin: 0.25rem 0 0.45rem 0 !important;
    /*display: block;*/
    border: 0.0625rem solid var(--primary) !important;
    color: var(--text) !important;
    background-color: var(--white) !important;
    box-sizing: border-box;
    cursor: pointer;
    border-top-left-radius: .6rem !important;
    border-top-right-radius: .6rem !important;
    border-bottom-left-radius: .6rem !important;
    border-bottom-right-radius: .6rem !important;
    width: auto !important;
    max-width: 100% !important;
    font-weight: 300 !important;
}

.standard-input input[type=submit] {
    width: 100%;
    background-color: var(--primary);
    color: white;
    padding: 0.85rem 1.25rem; /*12px 20px*/
    margin: 0.5rem 0;
    border: none;
    cursor: pointer;
}

    .standard-input input[type=submit]:hover {
        background-color: var(--secondary);
        cursor: pointer;
    }

.standard-input input:focus, .standard-input select:focus, .standard-input textarea:focus, .standard-input button:focus {
    outline: none;
    border-color: #000;
}

.standard-input input[type=checkbox], .standard-checkbox {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 1.2rem;
    height: 1.2rem;
    padding: 0.5rem;
    border: 0.0625rem solid #88A2AA;
    border-radius: 0.25rem !important;
    background: #fff;
    display: inline-block;
    color: #000;
    vertical-align: top;
    cursor: pointer;
}

    .standard-input input[type=checkbox]:checked, .standard-checkbox:checked {
        content: url(..//img/tick-large-primary.svg);
        background-repeat: no-repeat;
        width: 1.2rem;
        height: 1.2rem;
        padding: 0;
    }

.standard-input-checkbox {
    margin-top: 1rem;
}

.standard-input-checkbox-support-text {
    display: inline-block;
    margin-top: -.7rem;
    padding-top: 0 !important;
    padding-left: .5rem;
}

.standard-input-support-link {
    text-decoration: none;
    text-align: right;
}

    .standard-input-support-link p {
        margin-top: 0;
        margin-bottom: 2rem;
        color: var(--primary);
    }

        .standard-input-support-link p:hover {
            color: var(--secondary);
        }

/* ====================================
   FOOTER
   ==================================== */

/*.footer {
	position:relative;
    height:20rem;
    width:100%;
    margin:0;
    padding-top:2rem;
	padding-bottom:2rem;
	background:var(--grey-4);
	color:var(--primary);
	z-index:1;
    overflow: hidden;
}*/


.login-footer {
    position: relative;
    height: 3rem;
    width: 100%;
    margin: 0;
    background: var(--white);
    color: var(--test);
    z-index: 1;
    overflow: hidden;
}

/* ====================================
   SPACING / PADDING
   ==================================== */


.zero-padded {
    padding: 0 0 0 0;
}

.page-padded {
    padding-left: 1.875rem; /*30px*/
    padding-right: 1.875rem; /*30px*/
}

.page-small-padded {
    padding-left: 1.375rem; /*30px*/
    padding-right: 1.375rem; /*30px*/
}

.page-padded-above-992 {
    padding-left: 0;
    padding-right: 0;
}

.page-padded-right {
    padding-right: 1.875rem; /*30px*/
}

.page-padded-left-above-768 {
    padding-left: 1.875rem; /*30px*/
}

.vertical-padded {
    padding-bottom: 1.875rem !important; /*30px*/
}

.vertical-top-padded {
    padding-top: 1.875rem !important; /*30px*/
    padding-bottom: 0 !important;
}

.vertical-top-bottom-padded {
    padding-top: 1.875rem !important; /*30px*/
    padding-bottom: 1.875rem !important; /*30px*/
}

.vertical-top-margin {
    margin-top: 1.875rem !important; /*30px*/
}

.vertical-top-bottom-margin {
    margin-top: 1.875rem !important; /*30px*/
    margin-bottom: 1.875rem !important; /*30px*/
}

.vertical-top-margin-minus-2 {
    margin-top: -2rem !important;
}

.vertical-bottom-margin-minus-half {
    margin-bottom: -.25rem !important;
}

.form-padded {
    padding-top: 1.875rem !important; /*30px*/
    padding-bottom: 0 !important;
}

.new-complaint {
    color: white !important;
}

    .new-complaint:hover {
        color: white !important;
    }

/* ====================================
   MEDIA QUERIES
   ==================================== */
@media (min-width: 37.5rem) { /* 600px */

    h1, .h1, .h2-as-h1 {
        font-size: 3.25rem;
    }

    .header-banner h1, .header-banner .h1, .header-banner .h2-as-h1 {
        font-size: 2.5rem;
        margin-top: .5rem;
        margin-bottom: 1rem;
    }

    .header-banner h2, .header-banner .h2, .header-banner .h1-as-h2 {
        font-size: 2.5rem;
        font-weight: 500;
    }

    .header-banner h3 {
        font-size: 1rem;
    }

    .standard-form h2 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .standard-input {
        font-size: 1rem;
    }

    /*.header-logo {
        margin: 1.25rem auto 0 0;
        font-size: 1.85rem;
    }*/

    .form-container-narrow {
        max-width: 23rem;
    }

    .form-container-home {
        max-width: 33rem;
        max-width: 75rem;
    }

        .form-container-home h3 {
            width: 100%;
        }

        .form-container-home .current-application-input {
            width: 100%;
            max-width: 75rem;
            display: flex;
            flex-wrap: wrap;
        }

    .left-container {
        margin-left: 0;
    }

    .saved {
        width: 40%;
        margin-top: 1rem;
        text-align: right;
    }
    .saved span { 
        top:6rem;
        right: 2.1rem;
        left: auto;
        font-size:.9rem !important;
    }
    .header-banner {
        top: 3.7rem;
        padding-top: 4rem;
        padding-bottom: 4rem;
        margin-bottom: 4.5rem;
    }

    .current-application {
        margin-right: 1rem;
    }

    .footer {
        height: 14rem;
        margin-bottom: 0;
        padding-top: 3rem;
        padding-bottom: 2rem;
    }
}

@media (min-width: 48rem) { /* 768px */

    .below-768 {
        display: none;
    }

    .above-768 {
        display: block;
    }

    .menu {
        width: 60%;
        text-align: right;
        margin-top: 1.75rem;
    }

        .menu a {
            margin-top: 0;
            margin-right: 0;
            margin-left: 1rem;
        }

    .form-padded {
        padding-top: .875rem !important; /*30px*/
    }

    .standard-form {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .standard-input {
        font-size: 1.125rem;
        margin-top: 1rem;
    }

    .standard-input-min-height {
        min-height: 5rem;
    }

    .standard-input-spacer {
        margin-top: 1rem;
        min-height: 5rem;
    }

    .current-application-input {
        margin-top: 4rem;
    }

    h1, .h1, .h2-as-h1 {
        font-size: 5.5rem;
        margin-top: .5rem;
    }

    header {
        height: 3.8rem;
    }

    .header-banner h1, .header-banner .h1, .header-banner .h2-as-h1 {
        width: 100%;
    }

    .header-banner h2, .header-banner .h2, .header-banner .h1-as-h2 {
        width: 100%;
    }

    h2, .h2 {
        font-size: 3.5rem; /*56px*/
    }

    .standard-form h2 {
        font-size: 1.25rem;
    }

    h3, .h3 {
        font-size: 1.125rem; /*18px*/
    }

    .header-banner h3 {
        font-size: 1.125rem; /*18px*/
    }

    .current-application-input h3 {
        font-size: 1.5rem;
    }

    h6 {
        font-size: 1rem; /*16px*/
    }

    p {
        font-size: 1rem; /*16px*/
    }

    .standard-form p {
        font-size: 1.125rem;
    }

    .header-banner p {
        font-size: 1.125rem; /*18px*/
    }

    .standard-input {
        font-size: 1.125rem !important;
    }

        .standard-input p {
            margin-left: 1rem;
            text-indent: -1rem;
        }

    .example-particulars-dropdown p, .example-development-dropdown p, .example-hours-dropdown p, .example-duration-dropdown p, .example-list-dropdown p, .example-minimise-dropdown p, .example-pr-dropdown p, .example-predicted-dropdown p {
        margin-left: 0;
        text-indent: 0;
    }

    ul, ol {
        font-size: 1rem; /*16px*/
    }

        ul li {
            font-size: 1rem; /*16px*/
        }

        ol li {
            font-size: 1rem; /*16px*/
        }

    .form-container-wide {
        margin-left: -1.875rem;
        margin-right: -1.875rem;
    }

    .column-form-container-wide {
        display: flex;
    }

    .column-form-container-medium {
        display: flex;
        max-width: 45.75rem;
        margin-left: auto;
        margin-right: auto;
    }

    .form-container-medium {
        max-width: 42rem;
        margin-left: auto;
        margin-right: auto;
    }

    .form-column {
        width: calc(50% - 1.875rem);
        margin-left: 1.875rem;
        margin-right: 1.875rem;
    }

    .no-columns {
        margin-left: 1.875rem;
        margin-right: 1.875rem;
    }

    #MainForm .container-standard-width:nth-of-type(2) .no-columns, #MainForm .container-standard-width:nth-of-type(12) .no-columns {
        width: calc(50% - 1.875rem);
    }

    .card, .btn, .form-control {
        font-size: 1.125rem;
    }

    .start-button {
        width: 20.5rem;
    }

        .start-button:after {
            margin-left: 2.5rem;
        }

    .current-application-input {
        max-width: 20.5rem;
    }

    .current-application-button {
        left: 55%;
    }

        .current-application-button button, .delete {
            margin-top: .25rem;
            width: 6rem;
            font-size: 1rem !important;
            padding-left: .5rem !important;
            padding-bottom: .4rem;
        }

    .current-application {
        padding: 1rem 1rem 1rem 1rem;
        width: 15rem;
    }

    .current-application-text {
        margin-top: 0;
        width: calc(60% - .5rem);
        font-size: .9rem;
    }

    .current-application-button {
        width: calc(40% - .5rem);
    }

    .resume, .delete {
        min-width: 6rem;
        max-width: 6rem;
    }

    .delete {
        margin-top: -.5rem;
    }

    .resume:after {
        margin-left: .5rem;
    }

    .delete:after {
        margin-left: 1rem;
    }

    #MainForm .container-standard-width:nth-of-type(13) {
        padding-bottom: 3.75rem !important;
    }

    .floated-file-input .standard-input {
        font-size: 1rem !important;
    }

    .smallprint {
        font-size: .9rem !important;
    }

    .footer-message h5 {
        margin-top: 2rem;
        margin-bottom: 2.5rem;
        font-size: 1.25rem;
    }

    .footer-message p {
        margin-top: 2.75rem;
    }
}

@media (min-width: 62rem) { /* 992px */

    .page-padded {
        padding-left: 3.75rem; /*60px*/
        padding-right: 3.75rem; /*60px*/
    }

    .page-small-padded {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .page-padded-right {
        padding-right: 3.75rem; /*60px*/
    }

    .page-padded-right-above-992 {
        padding-right: 3.75rem; /*60px*/
    }

    .below-992 {
        display: none;
    }

    .above-992 {
        display: block;
    }

    .content {
        margin: 0 0 0 0;
    }

    .menu {
        margin-top: 1.65rem;
    }

        .menu a {
            font-size: 1.25rem;
        }

    .spaced-left-button {
        margin-left: 2rem;
    }

    .help-tooltip {
        width: 25rem;
    }


    #particulars-form .help-tooltip {
        left: 25.25rem;
    }

    #MainForm .container-standard-width:nth-of-type(4) .help-tooltip {
        left: 24.25rem;
    }

    #development-form .help-tooltip {
        left: 32rem;
    }

    #MainForm .container-standard-width:nth-of-type(5) .help-tooltip {
        left: 32rem;
    }

    #hours-form .help-tooltip {
        left: 11.75rem;
    }

    #MainForm .container-standard-width:nth-of-type(6) .help-tooltip {
        left: 11.75rem;
    }

    /*#list-form .help-tooltip {
        left: 17.5rem;
    }

    #MainForm .container-standard-width:nth-of-type(7) .help-tooltip {
        left: 17.5rem;
    }

    #minimise-form .help-tooltip {
        left: 31.5rem;
    }*/

    #MainForm .container-standard-width:nth-of-type(8) .help-tooltip {
        left: 20.5rem;
    }

    #pr-form .help-tooltip {
        left: 30.75rem;
    }

    #MainForm .container-standard-width:nth-of-type(9) .help-tooltip {
        left: 30.75rem;
    }

    #predicted-form .help-tooltip {
        left: 19.5rem;
    }

    #MainForm .container-standard-width:nth-of-type(10) .help-tooltip {
        left: 30rem;
    }

    #MainForm .container-standard-width:nth-of-type(11) .help-tooltip {
        left: 16.5rem;
    }

    .header-banner .help-tooltip {
        left: 33rem;
        padding: 1.25rem 1.25rem 1rem 1.25rem;
    }

    .help-tooltip:after {
        left: 265px;
    }

    .header-banner .help-tooltip:after {
        left: 105px;
    }

    .btn-s61-small {
        display: inline-block;
    }
     .saved span { 
        top:5.8rem;
        right: 3.7rem;
        left: auto;
    }
}


@media (min-width: 68.75rem) { /* 1100px */

    .above-1100 {
        display: block;
    }
}

@media (min-width: 75rem) { /* 1200px */

    h1, .h1, .h2-as-h1 {
        font-size: 6.875rem; /*110px*/
    }

    h2, .h2 {
        font-size: 3.5rem; /*56px*/
    }


    h6 {
        font-size: 1.125rem; /*18px*/
    }

    p {
        font-size: 1.125rem; /*18px*/
    }

    ul, ol {
        font-size: 1.125rem; /*18px*/
    }

        ul li {
            font-size: 1.125rem; /*18px*/
        }

        ol li {
            font-size: 1.125rem; /*18px*/
        }
}

.beta-message {
    position: fixed;
    top: 0;
    width: 100%;
    height: 1rem;
    background: #eeeeee;
    opacity: .8;
    text-align: center;
    font-size: .8rem;
    font-weight: 700;
    line-height: 1.1;
    z-index: 999;
}

.address-checkbox-column {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.address-checkbox-label {
    font-weight: 500 !important;
}

.half-width{
    width:50% !important;
    float:left;
    margin-top:0;
}

.inline-block-container .inline-block-input {
    display: inline-block;
    margin-top:0;
}
.form-container-wide .form-column {
 width:100%;
}
.standard-form .inline-block-container .standard-input h2 {
    font-weight:500;
    margin-bottom: .5rem;
}
.standard-form .inline-block-container .standard-input:nth-child(3) h2 {
    font-weight:700;
    margin-bottom: 1rem;
}
.inline-block-input label {
    display: inline-block;
}

.inline-block-input input {
    display: inline-block;
    vertical-align: super;
    width: 4.5rem !important;
    margin-right: 1rem !important;
    text-align: center;
}