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

textarea:focus,
input:focus,
button:focus,
select:focus,
label:focus,
.btn:focus,
.form-control:focus {
    outline: none !important;
    /*-webkit-appearance: none !important;
    -moz-appearance: none !important;*/
    box-shadow: none !important;
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
}
/* Loading */
#loading {
    bottom: 0;
    background: rgba(223, 223, 223, 0.4);
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 10000;
}
.norgba #loading {
    background: transparent url(../img/loadingbackground.png);
}

#loading img {
    background: #fff;
    border-radius: 9px;
    height: 100px;
    left: 50%;
    margin: -50px 0 0 -50px;
    padding: 10px;
    position: fixed;
    top: 50%;
    width: 100px;
}

.highlight {
    background-color: #3cb6df;
    color: white;
    position: relative;
}

.highlight:after {
    left: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(111, 170, 220, 0);
    border-left-color: #3cb6df;
    border-width: 20px;
    margin-top: -20px;
}

.top-area-wrap.template {
    background-image: url('../img/header.jpg');
}

.img-logo {
    content: url("../img/logo.png");
}

:root {
    --primary: #33ccff;
    --secondary: #a3cf5f;
    --copy: #555;
}

h1, h2, h3, h4, h5 {
    font-family: 'Roboto Condensed', sans-serif;
    color: var(--primary);
    font-weight: 700;
}

.rule {
    border-bottom: 2px solid var(--secondary);
}

p, body, .row {
    font-size: 1.25em;
    color: var(--copy);
    font-family: 'Roboto Condensed', sans-serif;
}

a {
    color: var(--primary);
}

a:hover, a:focus {
    color: #80dfff;
}

.navbar-inverse {
    background-color: var(--primary);
    border-color: #5a1e46;
}

    .navbar-inverse .navbar-brand {
        color: #fff;
    }

    .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
        color: #fff;
        background-color: #5f1f4a;
    }

.font-sub {
    font-size: 1.25em;
    color: var(--primary);
    font-family: 'Roboto Condensed', sans-serif;
}

.font-bold {
    font-weight: 700;
}

.btn-gradient-primary {
    background-color: #ce44a2 !important;
    background-image: linear-gradient(14deg,#6faadc 40%,#ce44a2 100%) !important;
    font-weight: bold;
    letter-spacing: 0.06em;
    line-height: 1;
    margin: 0;
    padding: 14px 36px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    vertical-align: baseline;
}

a.btn-gradient-primary {
    color: white;
}

.section-header {
    background-image: url(../images/pinstripe.png);
    background-repeat: repeat;
    width: 50%;
    height: 300px;
}

.top-branding {
    background-color: var(--primary);
    padding: 5px 0px;
}

    .top-branding a {
        color: white;
        text-transform: uppercase;
        font-size: .8em;
        padding: 10px 0px;
    }

.top-area-wrap {
    width: 100%;
    height: 220px;
    background-color: lightblue;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.top-area-content {
    margin-top: 15px;
}

.progress-ui {
    padding: 50px 0px;
}

.step-copy-icon {
    margin-right: 5px;
}

.top-area-content .img-logo {
    height: 50px;
}

.top-area-content-title h1 {
    font-weight: bold;
    color: var(--primary);
}

.page-note {
    padding: 20px;
    line-height: 1.3em;
    width: 75%;
    text-align: center;
    margin: auto;
    color: #999;
}

.page-content {
    padding: 20px;
}

label {
    font-weight: normal;
}

/* progress ui test */

#crumbs ul {
    list-style: none;
    display: inline-table;
}

    #crumbs ul li {
        display: inline;
    }

        #crumbs ul li a, .progress-step {
            display: block;
            float: left;
            height: 80px;
            background: var(--primary);
            padding: 6px 10px 0 50px;
            position: relative;
            margin: 0 10px 0 0;
            font-size: 1.3em;
            text-decoration: none;
            color: #fff;
            width: 15%;
            text-align: left;
            font-family: 'Open Sans condensed'
        }

            #crumbs ul li a:after, .progress-step:after {
                content: "";
                border-top: 40px solid transparent;
                border-bottom: 40px solid transparent;
                border-left: 40px solid var(--primary);
                position: absolute;
                right: -40px;
                top: 0;
                z-index: 1;
            }

            #crumbs ul li a:before, .progress-step:before {
                content: "";
                border-top: 40px solid transparent;
                border-bottom: 40px solid transparent;
                border-left: 40px solid white;
                position: absolute;
                left: 0;
                top: 0;
            }

            #crumbs ul li:first-child a, .progress-step:first-child {
                border-top-left-radius: 5px;
                border-bottom-left-radius: 5px;
                padding-left: 20px;
            }

                #crumbs ul li:first-child a:before {
                    display: none;
                }

            .progress-step.first:before,
            .progress-step.last:after {
                display: none;
            }

            #crumbs ul li:last-child a, .progress-step:last-child {
                border-top-right-radius: 5px;
                border-bottom-right-radius: 5px;
            }

                #crumbs ul li:last-child a:after {
                    display: none;
                }

            #crumbs ul li a:hover {
                background: var(--primary);
            }

                #crumbs ul li a:hover:after {
                    border-left-color: var(--primary);
                }

            .progress-step.active-step {
                background-color: #a3cf5f;
                position: relative;
            }

                .progress-step.active-step:after {
                    border-left: 40px solid #a3cf5f;
                }

.step-copy {
    line-height: 1.3em;
    position: relative;
    top: 50%;
    transform: translateY(-56%);
}

section.section-mobile {
    display: none;
}

.tracker-mobile-raster {
    display: none;
}

.mobile-notifications {
    width: 500px;
}

.dev-notes {
    font-size: .85em;
    color: #666;
    text-align: center;
}

    .dev-notes ul {
        list-style-type: none;
        padding: 0px;
    }

        .dev-notes ul li {
            display: inline;
        }

            .dev-notes ul li a {
                margin: 0 10px;
            }

section#footer {
    margin: 100px 0 200px;
    text-align: center;
    border-top: 1px solid #ddd;
    padding-top: 20px;
    color: #c7c7c7;
}

.page-break {
    border-top: 1px solid #ddd;
    margin-top: 20px;
}

/* Bootstrap Overrides */
.btn-sm, .btn-group-sm, .btn {
    border-radius: 0px;
    text-transform: uppercase;
}

.btn-primary {
    background-color: #6faadc;
    border-color: #6faadc;
}

    .btn-primary:hover,
    .btn-primary:focus,
    .btn-primary:active,
    .btn-primary.active {
        background-color: #5a9ed7;
        border-color: #4692d2;
    }

.btn-secondary {
    background-color: #a3cf5f;
    border-color: #a3cf5f;
    color: white;
}

    .btn-secondary:hover,
    .btn-secondary:focus,
    .btn-secondary:active,
    .btn-secondary.active {
        background-color: #98c94b;
        border-color: #8cc13a;
        color: white;
    }


.card {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
}

.card-tile {
    width: 25%;
}

.info-icons {
    font-size: 14px;
}

/* Table stlying override */



/* mobile */

/* Tablet and smaller */
@media only screen and (max-width: 992px) {
    .mobile-notifications {
        width: auto;
    }

    .step-copy {
        font-size: .8em;
    }

    #crumbs, .status-steps {
        display: none;
    }

    section.section-mobile, .tracker-mobile-raster {
        display: inherit;
    }

    .tracker-mobile-raster {
        width: auto;
        margin: auto;
    }

    .top-area-wrap {
        height: 230px;
    }

    .top-area-content img.img-logo {
        width: 90px;
    }

    .top-area-content {
        margin-top: 15px;
    }

    #crumbs {
        display: none;
    }

    .step-copy-mobile {
        background-color: var(--primary);
        color: white;
        padding: 7px 7px 7px 17px;
        font-family: 'Open Sans condensed';
        font-size: 1.3em;
        border-radius: 0 5px 5px 0;
        position: relative;
        width: 100%;
        margin-bottom: 5px;
    }

    .progress-step-mobile {
        display: flex;
    }

    .step-mobile-indicator {
        width: 0px;
        height: 0;
        border-top: 19px solid transparent;
        border-bottom: 20px solid transparent;
        border-left: 17px solid #ffd100;
        background-color: #6faadc;
    }

    .step-copy-mobile.inactive {
        padding-left: 33px;
    }

    .step-mobile-icon {
        margin-left: -21px;
    }

        .step-mobile-icon .fa {
            margin-right: 3px;
        }

    .step-copy-mobile.inactive.complete {
        color: rgba(245, 245, 245, 0.57);
    }

    .progress-ui {
        padding: 20px 0px;
    }

    /* Phones and smaller only */

    .page-note {
        padding: 20px 0;
        width: 100%;
    }

    .card-tile {
        width: auto;
    }
}


/* Comfort Zone */

.container-row {
    position:relative
}
.needle {
    position: absolute;
    bottom:119px;
    height: 40px;
    left:106px;
}

.needle-green {
    background: url("../img/needle-green.png");
}

.needle-red {
    background: url("../img/needle-red.png");
}

.left-column-background {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#b5bdc8+0,828c95+36,28343b+100;Grey+Black+3D */
    background: rgb(181,189,200); /* Old browsers */
    background: -moz-linear-gradient(left, rgba(181,189,200,1) 0%, rgba(130,140,149,1) 36%, rgba(40,52,59,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(181,189,200,1) 0%,rgba(130,140,149,1) 36%,rgba(40,52,59,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(181,189,200,1) 0%,rgba(130,140,149,1) 36%,rgba(40,52,59,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b5bdc8', endColorstr='#28343b',GradientType=1 ); /* IE6-9 */
}

.right-column-background {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#34383a+0,282828+51,34383a+98,34383a+98 */
    background: rgb(52,56,58); /* Old browsers */
    background: -moz-linear-gradient(left, rgba(52,56,58,1) 0%, rgba(40,40,40,1) 51%, rgba(52,56,58,1) 98%, rgba(52,56,58,1) 98%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(52,56,58,1) 0%,rgba(40,40,40,1) 51%,rgba(52,56,58,1) 98%,rgba(52,56,58,1) 98%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(52,56,58,1) 0%,rgba(40,40,40,1) 51%,rgba(52,56,58,1) 98%,rgba(52,56,58,1) 98%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#34383a', endColorstr='#34383a',GradientType=1 ); /* IE6-9 */ 
}

body {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#333333+0,444444+0,777777+24,777777+82,444444+100 */
    background: rgb(51,51,51); /* Old browsers */
    background: -moz-linear-gradient(left, rgba(51,51,51,1) 0%, rgba(68,68,68,1) 0%, rgba(119,119,119,1) 24%, rgba(119,119,119,1) 82%, rgba(68,68,68,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(51,51,51,1) 0%,rgba(68,68,68,1) 0%,rgba(119,119,119,1) 24%,rgba(119,119,119,1) 82%,rgba(68,68,68,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(51,51,51,1) 0%,rgba(68,68,68,1) 0%,rgba(119,119,119,1) 24%,rgba(119,119,119,1) 82%,rgba(68,68,68,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#333333', endColorstr='#444444',GradientType=1 ); /* IE6-9 */
}

/*.life-form {
    padding-top: 21.2em;
    padding-left: 5em;
    width: 39.3em;
}

    .life-form > div {
        margin-left: -0.9em;
        margin-top: -.5em;
    }

        .life-form > div > div {
            border-width: .5em !important;
        }*/

/* slider button switch styling */

.switch {
    position: relative;
    display: block;
    vertical-align: top;
    width: 180px;
    height: 30px;
    padding: 3px;
    margin: 0 10px 10px 0;
    background: linear-gradient(to bottom, #eeeeee, #FFFFFF 25px);
    background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF 25px);
    border-radius: 18px;
    box-shadow: inset 0 -1px white, inset 0 1px 1px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    box-sizing: content-box;
}

.switch-input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    box-sizing: content-box;
}

.switch-label {
    position: relative;
    display: block;
    height: inherit;
    font-size: 10px;
    text-transform: uppercase;
    background: #eceeef;
    border-radius: inherit;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15);
    box-sizing: content-box;
}

    .switch-label:before, .switch-label:after {
        position: absolute;
        top: 51%;
        margin-top: -.5em;
        line-height: 1;
        -webkit-transition: inherit;
        -moz-transition: inherit;
        -o-transition: inherit;
        transition: inherit;
        box-sizing: content-box;
    }

    .switch-label:before {
        content: attr(data-off);
        right: 11px;
        color: #ffffff;
        text-shadow: none;
        font-size: 1.4em;
    }

    .switch-label:after {
        content: attr(data-on);
        left: 11px;
        color: #FFFFFF;
        text-shadow: 0 1px rgba(0, 0, 0, 0.2);
        opacity: 0;
    }

.switch-input:checked ~ .switch-label {
    background: #337ab7;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2);
}

    .switch-input:checked ~ .switch-label:before {
        opacity: 0;
    }

    .switch-input:checked ~ .switch-label:after {
        opacity: 1;
        font-size: 1.4em;
    }

.switch-handle {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 28px;
    height: 28px;
    background: linear-gradient(to bottom, #FFFFFF 40%, #f0f0f0);
    background-image: -webkit-linear-gradient(top, #FFFFFF 40%, #f0f0f0);
    border-radius: 100%;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

    .switch-handle:before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        margin: -6px 0 0 -6px;
        width: 12px;
        height: 12px;
        background: linear-gradient(to bottom, #eeeeee, #FFFFFF);
        background-image: -webkit-linear-gradient(top, #8c8c8c, #FFFFFF);
        border-radius: 6px;
        box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
    }

.switch-input:checked ~ .switch-handle {
    left: 153px;
    box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}
span.switch-label {
    background-color: #337ab7;
    color:white;
}

/* Transition
========================== */
.switch-label, .switch-handle {
    transition: All 0.3s ease;
    -webkit-transition: All 0.3s ease;
    -moz-transition: All 0.3s ease;
    -o-transition: All 0.3s ease;
}

/* db */

.wcm-ui-frame {
    width: 580px;
    margin:auto;
    padding-top:0;
}
.wcm-ui-frame-form {
    position:relative;
}
.ui-tool-bottom-border {
    background-image: url(../img/tool-outline-bottom.png);
    background-size: cover;
    height:20px;
    position:absolute;
    bottom:0px;
}
.wcm-ui-frame p {
    color:white;
}
.wcm-ui-frame label {
    font-size:1.1em;
}
.wcm-ui-frame .form-control {
    color: #fff;
    background-color: #212223;
}

.wcm-ui-frame .intro {
    background-color: #33ccff;
    text-transform: inherit;
    color: white;
    padding: 8px 25px;
    border-radius: 16px;
    border: 2px solid white;
    font-size: 20px;
    margin-top: 1em;
}

.wcm-ui-frame .btn {
    background-color: transparent;
    text-transform: inherit;
    color: white;
    padding: 8px 25px;
    border-radius: 16px;
    border: 2px solid white;
}

.ui-content-wrap .wcmCompliance {
     top: 537px;
     left: 65px;
     position: absolute;
     color: #fff;
     cursor: pointer;
}

.guidance-mode-close .btn-xs {
    padding: 0px 5px 0px 5px;
}

.guidance-mode-close {
    margin-top: 15px;
}

.needle-section {
    background-image: url(../img/dial-full-chop.png);
    background-repeat: no-repeat;
    height: 295px;
    position: relative;
    background-size: contain;
    margin-bottom: -2px;
}
.help-block {
    color: white !important;
    margin-bottom: 0;
}
.input-error {
    color: #a94442;
    display: block;
    font-size: 80%;
}
.needle-point {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    margin: auto;
    height: 250px;
    background-repeat: no-repeat !important;
    background-position-x: 50%;
    transform-origin: bottom;
    padding: 15px;
    background-position: bottom !important;
    background-size: 46px !important;
    -webkit-transition: transform 2s linear;
    -moz-transition: transform 2s linear;
    -o-transition: transform 2s linear;
    transition: transform 2s linear;
}
.needle-fulcrum {
    z-index:3;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -25px;
    background: rgb(226,226,226); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(226,226,226,1) 0%, rgba(219,219,219,1) 50%, rgba(209,209,209,1) 51%, rgba(254,254,254,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(226,226,226,1) 0%,rgba(219,219,219,1) 50%,rgba(209,209,209,1) 51%,rgba(254,254,254,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(226,226,226,1) 0%,rgba(219,219,219,1) 50%,rgba(209,209,209,1) 51%,rgba(254,254,254,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.ui-content-wrap {
    position: relative;
    display: flex;
    color: white !important;
    padding-bottom: 100px;
    height: 630px;
}
.ui-content-left {
    width: 40%;
    padding-top: 20px;
    background-image: url(../img/left-backer.png);
    background-size: cover;
    border-bottom: 13px solid transparent;
    border-left: 13px solid transparent;
    -moz-border-image: -moz-linear-gradient(top, #3acfd5 0%, #3a4ed5 100%);
    -webkit-border-image: -webkit-linear-gradient(top, #3acfd5 0%, #3a4ed5 100%);
    border-image: linear-gradient(to bottom, #a4b3b8 0%, #d5e0e4 100%);
    border-image-slice: 1;
}
.ui-content-left > .ui-row > .form-group {
    padding: 10px 20px;
    margin-bottom: 0;
}
.ui-content-right {
    width: 60%;
    padding: 20px 0;
    background-image: url(../img/right-backer.png);
    background-size: cover;
    border-bottom: 13px solid transparent;
    border-right: 12px solid transparent;
    -moz-border-image: -moz-linear-gradient(top, #3acfd5 0%, #3a4ed5 100%);
    -webkit-border-image: -webkit-linear-gradient(top, #3acfd5 0%, #3a4ed5 100%);
    border-image: linear-gradient(to bottom, #a2b3b9 0%, #d5e0e4 100%);
    border-image-slice: 1;
}
.ui-sliders-group {
    padding:20px;
    width:60%;
}
.ui-content-full {
    width: 100%;
    padding: 20px;
    text-align: center;
    background-image: url(../img/right-backer.png);
    background-size: cover;
    border-bottom: 13px solid transparent;
    border-left: 13px solid transparent;
    border-right: 12px solid transparent;
    -moz-border-image: -moz-linear-gradient(top, #3acfd5 0%, #3a4ed5 100%);
    -webkit-border-image: -webkit-linear-gradient(top, #3acfd5 0%, #3a4ed5 100%);
    border-image: linear-gradient(to bottom, #a4b3b8 0%, #d5e0e4 100%);
    border-image-slice: 1;
}
.ui-row.last {
    padding:20px 0;
    border-bottom: none;
}
label.btn.toggle-on {
    background-image: linear-gradient(#33ccff, #3399ff 60%);
    height: 30px;
    padding-top: 3px;
    margin-top: 6px;
    border: 1px solid black;
}
span.btn.toggle-handle {
    background-image: linear-gradient(#33ccff, #3399ff 60%);
    position: absolute;
    border: 11px solid #d8d8d8;
    border-radius: 100px;
    padding: 9px;
}
.toggle-group {
    width:140%;
}

.toggle.btn.btn-primary,
.toggle.btn.btn-default.off,
.toggle.btn.btn-default.on {
    width: 180px !important;
    border: none;
    background: transparent;
}
label.btn.active.toggle-off {
    background-image: linear-gradient(#33ccff, #3399ff 60%);
    height: 30px;
    padding-top: 3px;
    margin-top: 6px;
    border: 1px solid black;
    color: white;
}
div.toggle.btn.btn-primary span.btn.toggle-handle {
    right: 50% !important;
}
.ui-row input[type="number"] {
    font-size: 1.2em;
    color: #33ccff;
}
.ui-row.ui-row-slider {
    border-bottom: 2px dotted #434445;
    padding: 10px 5px 0px 15px;
}
.ui-row.ui-row-slider label {
    display: block;
    color: #a1a1a1;
}
.ui-row.ui-row-slider label.risk-label {
    margin-bottom: 10px;
}
.ui-row.ui-row-slider select {
    color: #33ccff;
    background-color: black;
    padding: 5px 0px 5px 7px;
    border-radius: 8px;
    display: inline;
    border: solid 1px #33ccff;
    -moz-appearance: none;
    cursor: default;
    width: 100%;
    -webkit-appearance: none;
    background-image: url(../img/dropdown-arrow.png);
    background-position: 107px;
    background-repeat: no-repeat;
    background-size: 10px;
    height: 30px;
    font-size: 1.2em;
}
.ui-row.ui-row-slider input {
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 4px;
    margin: 10px 0;
    width: 57%;
    height: 6px;
    padding: 0;
    display: inline;
    cursor: default;
}
.currency-input {
    padding: 7px 20px !important;
}

/*.input-icon, .input-icon-income, .input-icon-savings {
    position: relative;
    display: inline;
}
.input-icon > i {
    position: absolute;
    top: -29%;
    pointer-events: none;
    width: 25px;
    text-align: center;
    font-style: normal;
    color: #36ccff;
    font-size: 1.2em;
}
.input-icon-income > i {
    position: absolute;
    top: 199%;
    margin-left: -89px;
    pointer-events: none;
    width: 25px;
    text-align: center;
    font-style: normal;
    color: #36ccff;
    font-size: 1.2em;
    z-index: 1;
}
.input-icon-savings > i {
    position: absolute;
    top: 199%;
    margin-left: -136px;
    pointer-events: none;
    width: 25px;
    text-align: center;
    font-style: normal;
    color: #36ccff;
    font-size: 1.2em;
    z-index: 1;
}
.input-icon > input {
    padding-left: 25px;
    padding-right: 0;
}*/
/*.input-icon-income > input {
    padding-right: 10px !important;
}*/
/*.input-icon-savings > input {
    padding-left: 22px;
    padding-right: 10px;
}*/
.ui-row.ui-row-slider input[type="number"]:hover,
.ui-row.ui-row-slider input[type="number"]:focus {
    -moz-appearance: initial;
    -webkit-appearance: initial;
}

.ui-row.ui-row-slider input[type=range]::-moz-range-track {
    background-color: transparent;
}

.ui-row.ui-row-slider input::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border: 0;
    cursor: pointer;
    border-radius: 1px;
    /*display: inline;*/
    z-index: 100;
    background-size: cover;
    background-color: transparent;
    background-image: url(../img/slider-knob.png);
}

.ui-row.ui-row-slider input[type=range]::-webkit-slider-runnable-track {
    background-color: transparent;
}

.ui-row.ui-row-slider input[type=range]::-ms-tooltip { display: none; }

.ui-row.ui-row-slider input[type=range]::-ms-track {
  background: transparent;
  color: transparent;
  border-width: 7px 0;
  border-color: transparent;
}

.ui-row.ui-row-slider input[type=range]::-ms-thumb {
    z-index: 100;
    height: 20px;
    width: 20px;
    border: 0;
    border-radius: 1px;
    background-size: cover;
    background-image: url(../img/slider-knob.png);
    cursor: pointer;
    background-color: transparent;
}

.ui-row.ui-row-slider input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    cursor: pointer;
    border-radius: 1px;
    /*display: inline;*/
    z-index: 100;
    background-size: cover;
    margin-top: 4px;
    background-image: url(../img/slider-knob.png);
}
.ui-row.ui-row-slider.last {
    border-bottom: none;
}
.select-row-dropdown {
    float: right;
    width: 42%;
    padding-right: 5px;
}
.retirement-age-input {
    float: right;
    width: 42%;
    padding-right: 5px;
}
.retirement-age-input input {
    margin: 0 !important;
}
.checkbox-inline {
    color: lightgray;
}
.guidance-mode-bubble {
    top: 0;
    right: -317px;
    width: 300px;
    position: absolute;
    border-radius: 20px;
    border: 4px solid white;
    padding: 10px;
    background: #7fa4d1;
    z-index: 1;
}
.highlight-right {
    background-color: #304f59 !important;
    position: relative;
    -webkit-transition: transform 2s linear;
    -moz-transition: transform 2s linear;
    -o-transition: transform 2s linear;
    transition: transform 2s linear;
    z-index: 2;
}

.highlight-right-nub:before {
    right: 91%;
    top: 10%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    margin-top: 18px;
    z-index: 0;
    border-right-color: black;
    border-width: 20px;
    transform: rotate(180deg)
}
.next-button {
    background: #3cf !important;
    padding: 5px 10px !important;
    border-radius: 10px !important;
}
.previous-button {
    background: none;
    padding: 5px 10px !important;
    border-radius: 10px !important;
}
.next-button:hover,
.previous-button:hover {
    background: #3399cc !important;
}
.guidance-mode h2 {
    color: white;
    font-weight: bold;
    font-size: 1.5em;
    padding-bottom: 10px;
}
.guidance-mode p {
    color: white;
    font-size: 1.2em;
}
.guidance {
    margin: -10px 30px;
}
.guidance-mode {
    background: black;
    height: 82%;
    top: 0%;
    position: absolute;
    width: 38%;
    z-index: 3;
    padding-left: 25px;
    padding-right: 25px;
    opacity: 0.9;
}
.glass, .glass:focus, .glass:hover {
    border: 3px solid #282828;
    background: rgb(97,98,100);
    background: linear-gradient(rgb(138, 138, 138) 0%, rgb(115, 115, 115) 47%, rgba(0,0,0,1) 22%);
    -moz-appearance: textfield;
    cursor: default;
}

.glass:hover,
.glass:focus {
    -moz-appearance: initial;
    -webkit-appearance: initial;
}
.ui-row.ui-row-slider input[type="number"] {
    background: black !important;
    -webkit-appearance: none;
    color: #3acbfb;
    margin-top: 10px;
    font-size: 1.2em;
    height: 30px;
    padding: 7px;
    border-width: 1px;
    display: inline;
    width: 40%;
    border-color: #34ccff;
    -moz-appearance: textfield;
    border-radius: 8px;
}

.slider-ticks-parent {
    position:relative;
}
.slider-ticks {
   
    background: url(../img/ticks-crop-retina-5x.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 57%;
    height: 20px;
}

.ui-content-right .form-group {
    margin-bottom:0px;
}
.ui-content-left input {
    border-radius: 10px;
}
input.right-side-age {
    width: 50% !important;
}
.left-border-outline {
    width:15px;
    float:left;
}
.enter-comfort-zone {
    position: absolute;
    right: -400px;
    top: -230px;
}
.enter-comfort-zone > h1 {
    color: white;
    margin-top: 0;
}
.enter-comfort-zone > h2 {
    color: white;
    margin-bottom: 0;
}
.enter-comfort-zone > p {
    width: 307px;
    font-size: 18px;
    color: white;
}
.level-two-title {
    font-size: 27px;
    padding-top: 115px;
    color: black;
    margin-left: -65px;
}
.level-two-scenario {
    background: url(../img/Level2-intro.png);
    height: 280px;
    background-size: 425px;
    background-repeat: no-repeat;
    margin-left: 11.5%;
}
.play-now {
    background: -webkit-linear-gradient(270deg, rgba(255, 102, 0, 1) 0%, rgba(255, 102, 0, 1) 0%, rgba(204, 102, 0, 1) 100%, rgba(204, 102, 0, 1) 100%);
    border-radius: 10px !important;
    width: 213px;
    height: 48px;
    font-size: 30px;
    padding: 0 !important;
    margin-top: 15px;
    margin-left: -59px;
}
.play-now:hover {
    background: linear-gradient(180deg, rgba(255, 153, 0, 1) 0%, rgba(255, 153, 0, 1) 0%, rgba(255, 102, 0, 1) 100%, rgba(255, 102, 0, 1) 100%);
    color: white;
}
.comfort-zone-overlay-closed {
    z-index: 3;
    position:absolute;
    width: 95.7%;
    left: 13px;
    bottom: 0px;
    padding-bottom: 100px;
    bottom: 20px;
}
.comfort-zone-overlay-closed .close-btn {
    height: 33px !important;
    transform: rotate(180deg);
    margin-left: 0px;
    background-position: center;
}

.comfort-zone-overlay .close-btn:after {
    content: 'Back';
    top: 14px;
    left: 42%;
    width: 90px;
    text-align: center;
    position: absolute;
    color: white;
    font-weight: 400;
    text-transform: uppercase;
    font-size: smaller;
}

.comfort-zone-overlay {
    width: 95.7%;
    left: 13px;
    position: absolute;
    height: 81.2%;
    margin-top: -279px;
    z-index: 3;
    overflow-y: hidden;
    transition: 0.8s all linear;
    top: 45%;
}
.comfort-zone-overlay.ng-enter {
    top: 793px;
    height: 0%
}
.comfort-zone-overlay.ng-leave {
    top: 793px;
    height: 0%;
    transition: 1.5s all linear;
}

.comfort-zone-overlay-no-animation {
    transition: none;
}

.comfort-zone-overlay-no-animation.ng-leave {
    transition: none;
}

.top-overlay-bar {
    margin-top: -3px;
    margin-bottom: -7px;
    border: 7px solid #444;
}
.close-btn {
    width: auto;
    height: 7%;
    margin-top: 7px;
    background: url(../img/close-BTN.png);
    background-repeat: no-repeat;
    background-size: 90px;
    margin-left: 42%;
}
.comfort-zone-button, .comfort-zone-button:hover {
    background: #1b1b1b;
    border-radius: 10px;
    font-size: 20px;
    padding: 0 15px;
    margin: 5px;
    border: transparent;
    text-decoration: none;
    color: white;
}
.comfort-zone-button:focus {
    text-decoration:none;
    color: white;
    outline: none;
}   
.comfort-zone-button.invest-now {
    margin-top: 455px;
    color: black;
    padding: 15px 7px;
    text-decoration: none;
}
.comfort-zone-button.advisor {
    margin-top: 535px;
    color: black;
}
.comfort-zone-button:hover {
    background-color: rgba(51, 204, 255, 0.87843137254902);
    color: white;
}
.cz-helper-text {
    padding-top: 200px;
    font-size: 14px;
}
.modal-save {
    border-width: 2px;
    border-radius: 10px;
    font-size: 15px;
    background-color: #33ccff !important;
    color: white;
}
.show-password {
    margin-bottom: 0;
}
.login-modal-header {
    background-color: #797979;
    color: white;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
}
.login-modal-header > h4 {
    color: white;
    margin-top: 0;
}
.login-body {
    background: #f0f0f0;
    color: black;
    padding-top: 4.7em;
    font-size: 14px;
    padding: 10px 0px;
    margin: 0px 43px;
    width: 85%;
    top: -60px;
    position: absolute;
    border-radius: 10px;
    border: 5px solid #7e7e7e;
}

.compliance-body {
    background: #f0f0f0;
    color: #666;
    padding-top: 4.7em;
    font-size: 9px;
    height: 495px; 
    overflow: scroll;
    padding: 10px 20px;
    margin: 0px 43px;
    width: 85%;
    top: -60px;
    position: absolute;
    border-radius: 10px;
    border: 5px solid #7e7e7e;
}

.aboutscenarios-body {
    background: #f0f0f0;
    color: #666;
    padding-top: 4.7em;
    font-size: 12px;
    height: 290px; 
    overflow: auto;
    padding: 10px 20px;
    margin: 0px 43px;
    width: 85%;
    top: -1px;
    position: absolute;
    border-radius: 10px;
    border: 5px solid #7e7e7e;
}

.aboutscenarios-body p, 
.compliance-body p {color: inherit}

.login-title {
    font-size: 15pt;
}
.login-needle-overlay {
    position: absolute;
    background: rgba(0,0,0,0.75);
    height: 31%;
    width: 555px;
    margin: 13px;
    border-top-left-radius: 280px;
    border-top-right-radius: 280px;
    z-index: 5;
    color: white;
    padding-top: 8em;
    font-size: 1.2em;
}
.login-needle-overlay span {
    font-size: 2em;
}
.login-needle-overlay p {
    margin: 1em;
}
.cz-needle-overlay {
    position: absolute;
    background: linear-gradient(to bottom, rgba(175,255,55,0.95), rgba(106,147,52,0.9));
    height: 31%;
    width: 555px;
    margin: 13px;
    border-top-left-radius: 280px;
    border-top-right-radius: 280px;
    z-index: 4;
    color: white;
    padding-top: 7em;
    font-size: 1.2em;
    opacity: 1;
    transition: 0.7s linear all;
}
    
.cz-needle-overlay.ng-enter {
    opacity: 0;
}
.cz-needle-overlay.ng-leave {
    opacity: 1;
    transition: 0s linear all;
}
.cz-needle-overlay-no-animation {
    transition: none;
}
.cz-needle-overlay-no-animation.ng-leave {
    transition: none;
}
.cz-needle-overlay > .line-one {
    margin-bottom: -10px;
}
.cz-needle-overlay > .line-one,
.cz-needle-overlay > .line-two {
    font-size: 2em;
    display: block;
}
.cz-needle-overlay > .line-three {
    display: block;
    font-size: 56px;
    margin-top: -7px;
}
.cz-needle-overlay > .line-four {
    padding: 0 30px;
    display: block;
    font-size: 17px;
    line-height: 18px;
}
.cz-line-one {
    font-size: 1.4em;
}
.cz-line-three {
    color: #9f9f9f !important;
}
.login-cancel-disabled,
.login-cancel {
    height: 40px;
    color: gray !important;
    border: none !important;
    font-size: 18px;
}
.login-cancel:hover {
    color: #33ccff !important;
}
.login-body button {
    display: inline-block;
}
.login-save {
    background-color: #cccccc !important;
    border-radius: 10px !important;
    border: 0px !important;
    color: #a2a2a2 !important;
    width: 181px;
    height: 40px;
    font-size: 20px;
    padding: 0 !important;
    margin-top: 15px;
    display: inline-block;
    width: 66%;
}
.login-save-active{
    color: white !important;
    border: 2px solid white !important;
    background: #33ccff !important;
    box-shadow: 1px 2px 7px black;
}
.login-parent {
    position: absolute;
    z-index: 5;
    width: 95%;
    left: 14px;
    height: 82%;
    background: rgba(0,0,0,0.75);
}
.login-parent.ng-enter,
.login-needle-overlay.ng-enter{
    -webkit-transition: 1s;
    transition: 1s;
    opacity: 0;
}
.login-parent.ng-enter-active,
.login-needle-overlay.ng-enter-active{
    opacity: 1;
}
.no-margin {
    margin: 0 !important;
}
.red-font {
    color: #a94442;
}
.login-body input {
    border-radius: 10px;
    font-size: 20px;
    color: black !important;
    background: white !important;
}
.login-body input[type=checkbox] {
    height: .8em;
    width: .8em;
}
.save-now {
    color:#FF6600;
    cursor: pointer;
}
/* landscape tablet height 770 and smaller */
@media (max-height: 770px) {
    .scaled-ui {
        transform: scale(.85);
        transform-origin: top;
    }
    .wcm-ui-frame {
        padding-top: 0;
    }
    .highlight:after {
        left: 97%;
    }
}

.toggle.off .toggle-group {
    left: 0%;
}

div.toggle.btn.btn-default span.btn.toggle-handle {
    right:84% !important;
}

.toggle.btn-primary .toggle-on {
    z-index: 1;
}

.toggle-on {
    padding-left: 0px !important;
}

.toggle-off {
    padding-right: 0px !important;
}

.toggle-group .toggle-off {
    left: -63px;
    width: 126px;
    position: relative;
}

.toggle-handle {
    z-index: 2;
}

.glass-left, .glass-left:hover, .glass-left:focus {
    border-right: none;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    color: #33ccff;
    font-size: 1.2em;
    padding-right: 0px;
}

.glass-right, .glass-right:hover, .glass-right:focus {
    border-left: none;
    padding-left: 0px;
}

.currency-left, .currency-left:hover, .currency-left:focus {
    border-right: none;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    color: #33ccff;
    font-size: 1.2em;
    padding-right: 0px;
    background: black !important;
    height: 30px;
    border-color: #34ccff;
    border-radius: 8px;
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
}

.currency-right, .currency-right:hover, .currency-right:focus, currency-right {
    border-left: none !important;
    padding-left: 0px !important;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
    border-bottom-left-radius: 0px !important;
    border-top-left-radius: 0px !important;
}

.currency-group {
    float: right;
    width: 42%;
    padding-right: 5px;
}

.currency-group .currency-right {
    width: 100% !important;
}

/*.ui-row-slider input {
    float: left;
}*/

.guidance-avatar {
    float: left;
    width: 60px;
    margin-left: -15px;
    height: 71px;
    margin-right: 5px;
    background: url("../img/guidance-avatar.png");
    background-repeat: no-repeat;
    background-size: 60px;
}
.clearfix {
    clear: both !important;
}
.choose-scenario-background {
    background: rgb(135,182,7);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    z-index: 4;
    border-top-left-radius: 287px;
    border-top-right-radius: 287px;
    padding-bottom: 15px;
    height: 100%;
    padding-bottom: 100px;
    height: 823px;
    width: 580px;
}
.choose-scenario {
    background: url(../img/scenario/road.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    position: absolute;
    width: 99%;
    left: 5px;
}
.transparent-button {
    font-size: 23px;
    cursor: pointer;
}
.scenario {
    width: 140px;
    height: 140px;
    text-align: center;
    position: absolute;
}
.scenario-0 {
    top: 58px;
    line-height: 126px;
    left: 147px;
}
.scenario-1 {
    top: 150px;
    line-height: 125px;
    left: 352px;
}
.scenario-2 {
    top: 320px;
    line-height: 125px;
    left: 111px;
}
.scenario-3 {
    top: 350px;
    line-height: 125px;
    left: 412px;
}
.scenario-4 {
    top: 602px;
    line-height: 125px;
    left: 211px;
}
.scenario-text {
    display: inline-block;
    line-height: normal;
    vertical-align: middle;
}
.choose-scenario img {
    height: 240px;
    position: relative;
}
.scenario-0-img {
    top: 37px;
    left: 97px;
}
.scenario-1-img {
    top: 128px;
    left: 89px;
}
.scenario-2-img {
    top: 60px;
    left: 60px;
}
.scenario-3-img {
    top: 87px;
    left: 149px;
}
.scenario-4-img {
    top: 100px;
    left: 160px;
}
.scenario-title {
    padding: 0 0 0 8px;
    position: absolute;
    top: 568px;
    font-size: 17px;
    color: #fff;
}
.scenario-signpost-text {
    padding:0;
    margin:-3px 0 0 -3px;
    font-size: 15px;
}
.choose-scenario p {
    width: 167px;
    position: absolute;
    padding-left: 11px;
    top: 600px;
    line-height: 1.2;
}
.outcomes {
    background: linear-gradient(to bottom, #0d2d4f, #154e9a);
    background-image: -webkit-linear-gradient(top, #0d2d4f, #154e9a);
    margin: 0 2.3%;
    width: 95.61%;
    height: 517px;
    position: absolute;
    padding: 0px;
    z-index: 4;
    text-align: center;
}
img.ng-enter {
    -webkit-transition: 3s;
    transition: 3s;
    opacity: 0;
}
img.ng-enter-active {
    opacity: 1;
}
.title {
    font-size: 20px;
    padding: 10px;
    font-weight: 800;
}
.sub-title {
    font-size: 17px;
    font-weight: 300;
    padding: 0px 15px 0px 15px;
}
.bottom-message {
    font-size: 17px;
    margin-top: .75em;
    padding: 15px;
    position: relative;
}
.continue-button {
    padding: 3px 35px;
    margin: 25px 85px;
    position: absolute;
    bottom: -8px;
    font-size: 25px;
    background: transparent;
    border: 2px white solid;
    border-radius: 10px;
}
.outcome-container {
    height: 220px;
    position: relative;
}
.helper-txt {
    color: #c2ff09;
    font-size: 11px;
    padding-left: 10px;
    margin-top: -10px;
}

.scenario-txt {
    color: #36ccff;
}
.helper-txt-input {
    color: #c2ff09;
    font-size: 17px;
    padding-left: 35px;
    margin-top: -10px;
    margin-bottom: -5px;
}
.guidance-text {
    color: #c2ff09;
}
[ng\:cloak], [ng-cloak], .ng-cloak {
  display: none !important;
}
.disable {
    cursor: not-allowed;
}
.disable input[type]:not([type=checkbox]) {
    pointer-events: none;
}
.disable toggle {
    cursor: not-allowed;
    pointer-events: none;
    box-shadow: none;
    opacity: 0.65;
}
.email-results-checkbox {
    display: block;
    margin-left: -5.5%;
    margin-top: 1%;
}
button.close {
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
}
.re-save {
    margin: 25px 10px 10px 10px;
    font-size: 19px;
    width: 150px;
}
.re-save:hover {
    background: #3399cc;
    border: 2px solid #3399cc;
}
.invest {
    padding: 3px 15px !important;
}
.email-button-wrapper {
    margin-left: 55px;
    padding: 35px 0 45px;
}
.email-button {
    display: inline-block;
    width: 61%;
}
.email-button i {
    padding-right: 20px;
    top: 5px;
}
.whats-next {
    font-size: 28px;
    font-weight: 600;
    display: block;
}
.about-scenarios {
    display: block;
    padding: 0 1em 0 0;
    text-decoration-line: none;
    font-size: 15px;
}
.learn-more {
    display: block;
    padding-bottom: 10px;
    text-decoration-line: none;
    font-size: 18px;
}
.done-button-wrapper {
    margin-left: 55px;
    padding-bottom: 145px;
}
.whats-next-p {
    font-size: 13px;
    padding: 0 15px 50px 15px;
}
.marker {
    margin-bottom: -8px;
    margin-top: 2px;
    display: block;
    height: 10px;   /*20px*/
    position: relative;
}
.thanks {
    font-size: 22px;
    padding: 30px 30px 0 30px;
}
.connect-button {
    width: 65%;
}

#age {
    width: 40%
}

.comfort-zone-reminder-overlay {
    position: absolute;
    top: 12px;
    left: 50%;
    margin-left: -183px;
    z-index: 2;
    opacity: 1;
}

.comfort-zone-reminder-overlay.ng-hide {
    opacity: 0;
}

.comfort-zone-reminder-overlay.ng-hide-remove {
    animation:  ease 1.25s normal forwards 1 fadein;
    -webkit-animation: ease 1.25s normal forwards 1 fadein;
}

.comfort-zone-reminder-overlay.ng-hide-add {
   animation:  ease 1.25s normal forwards 1 fadeout;
   -webkit-animation: ease 1.25s normal forwards 1 fadeout;
}

@keyframes fadein{
    0% { opacity:0; }
    100% { opacity:1; }
}

@-webkit-keyframes fadein {
    0% { opacity:0; }
    100% { opacity:1; }
}

@keyframes fadeout{
    0% { opacity:1; }
    100% { opacity:0; }
}

@-webkit-keyframes fadeout{
    0% { opacity:1; }
    100% { opacity:0; }
}