h1 {
    font-size: 1.5em;
    font-weight: bold;
    line-height: 1.3em;
    padding-left: 0px;
    color: #ec1a22;
}

.form-title {
    color: #3575bf;
    font-size: 1.5em;
    font-weight: bold;
    line-height: 1.3em;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}

.modal-content {
    background: #3575bf !important;
}

.modal-header, .bootstrap-dialog-close-button button {
    color: white !important;
}

.modal-body {
    background: white !important;
}

.active-question {
    font-weight: bold;
    color: #EC1B24;
}

.title-box {
    background: #3575bf;
    color: white;
    padding: 8px;
    font-size: 16px;
    text-align: center;
}

.subtitle {
    color: #3575bf;
    font-weight: bold;
    text-align: center;
    font-size: 1.2em;
    margin-top: 8px;
}

.help-box {
    display: block;
    position: relative;
    padding: 10px;
    background: blue;
    width: 320px;
    height: 120px;
}

    .help-box.content {
        display: block;
        border-radius: 5px;
        background: cornflowerblue;
        color: blue;
    }


.topaccent {
    display: block;
    height: 5px;
    background: #3575bf;
}

.accentbar {
    display: block;
    height: 35px;
    width: 100%;
    background: #f6f6f6;
    margin-bottom: 10px;
    border-bottom: solid 1px #dddddd;
}

.navbar-default {
    background: white;
    padding-bottom: 15px;
    border: none;
}

.wizard-row {
    padding-bottom: 35px;
}

.question {
    /*color: #ec1a22;*/
    /*color: #285a93;*/
    font-size: 18px;
    color: rgb(10, 94, 168);
    text-transform: capitalize;
    font-size: 18px;
}

.fake-input {
    border: solid 1px #d9d8d3;
    margin-bottom: 12px;
}

.questionsContainer .row {
    padding-bottom: 14px;
}

.field-label {
    font-size: 18px;
    color: rgb(10, 94, 168);
    text-transform: uppercase;
    line-height: 1.5;
}

select {
    -webkit-appearance: button;
    -webkit-border-radius: 2px;
    -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
    -webkit-padding-end: 20px;
    -webkit-padding-start: 2px;
    -webkit-user-select: none;
    /*background-image: url(https://i62.tinypic.com/15xvbd5.png), -webkit-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);*/
    background-position: 97% center;
    background-repeat: no-repeat;
    border: 1px solid #AAA;
    color: #555;
    font-size: inherit;
    overflow: hidden;
    padding: 5px 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 300px;
}

input[type="text"], input[type="email"], input[type="tel"] {
    display: block;
    margin: 0;
    width: 100%;
    font-family: sans-serif;
    padding: 8px 10px;
    border: solid 1px #c9c9c9;
    box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.15);
    transition: border 0.1s;
    font-size: 1.1em;
    /*border-radius: 8px;*/
    line-height: 16px;
}

    input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus {
        outline: none;
        /*border: none;*/
        border-bottom: solid 2px #3575bf;
        transition: border 0.1s;
    }

    input[type="text"] ~ .error, input[type="email"] ~ .error, input[type="tel"] ~ .error {
        display: none;
        transition: display 0.3s;
    }

    input[type="text"]:invalid.ng-touched, input[type="email"]:invalid.ng-touched, input[type="tel"]:invalid.ng-touched {
        border-bottom: solid 2px red;
        transition: border 0.1s;
    }

/*Only show the full error on larger devices*/
@media(min-width:768px) {
    /*input[type="text"]:invalid.ng-touched ~ .error {
            display: block;
            transition: display 0.3s;
        }*/

        .desktop-only {
        display: block;
    }

    .mobile-only {
        display: none;
    }

    .question-for-text-answer {
        padding-top: 10px;
    }
}

input[type="text"]:valid, input[type="email"]:valid, input[type="tel"]:valid {
    border-bottom: solid 2px #45AE52;
}

.error {
    color: red;
    font-weight: 500;
    font-style: italic;
}

input[type=button] {
    border: none;
    text-transform: uppercase;
    /*width: 322px;*/
    padding: 12px;
    font-size: 16px;
    color: white;
    margin-bottom: 10px;
    transition: background-color 0.4s;
    border-radius: 6px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#3575bf+0,285a93+100 */
    background: #3575bf; /* Old browsers */
    background: -moz-linear-gradient(top, #3575bf 0%, #285a93 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #3575bf 0%,#285a93 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #3575bf 0%,#285a93 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3575bf', endColorstr='#285a93',GradientType=0 ); /* IE6-9 */
}

    input[type=button]:disabled {
        background: lightgray !important;
        color: gray;
        transition: background-color 0.4s;
    }

input[type=radio] {
    display: none;
    margin: 10px;
}

    input[type=radio] + label {
        display: inline-block;
        padding: 1px 1px 12px 1px;
        margin: 5px;
        /*background-color: #e7e7e7;
    border-color: #ddd;*/
        /*border-radius: 4px;*/
        font-weight: normal;
        transition: background-color 0.3s;
    }

    input[type=radio]:checked + label {
        border-color: #0a5ea8;
        transition: border-color 0.3s;
    }

.details-link {
    margin-bottom: 10px;
    padding: 15px;
    font-size: 14px;
    background-color: #337ab7;
    color: white;
    border-radius: 6px;
    /*transition: padding 0.1s;*/
}

.button-image {
    padding-bottom: 4px;
}

.select-stairlift-button {
    width: auto !important;
    height: auto !important;
    padding: 15px !important;
    font-size: 14px !important;
    /*transition: padding 0.1s;*/
}

    .details-link:hover, .select-stairlift-button:hover {
        color: #fff;
        text-decoration: none;
        /*transition: padding 0.1s;
    padding: 17px !important;*/
    }

.mobile-button {
    display: none;
}

.button-label {
    display: inline-block;
    /*width: 160px;*/
    text-align: center;
}

    .button-label img {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

.filter-label {
    font-size: 1.2em;
    padding: 12px;
    font-weight: 500;
    padding-left: 0;
}

table {
    color: #333; /* Lighten up font color */
    font-family: Helvetica, Arial, sans-serif; /* Nicer font */
    width: 640px;
    border-collapse: collapse;
    border-spacing: 0;
}

#StairliftsTable {
    width: 100%;
}

td, th {
    border: 1px solid #CCC;
    height: 38px;
    text-align: center;
}
/* Make cells a bit taller */

th {
    background: #F3F3F3; /* Light grey background */
    font-weight: bold; /* Make sure they're bold */
    height: 50px;
}

td {
    background: #FAFAFA; /* Lighter grey background */
    text-align: center; /* Center our text */
    padding-top: 10px;
}

.button-answer {
    border: solid 1px #d9d8d3;
    text-transform: uppercase;
    color: #0a5ea8;
    font-size: 17px;
}

.text-answer {
    width: 50%;
}

.postcode-input {
    width: 350px !important;
    margin-top: 12px !important;
}

/* A totally custom override */

.progress-indicator.custom-complex {
    /*background-color: #f1f1f1;*/
    padding: 10px 5px;
    /*border: 1px solid #ddd;*/
    border-radius: 10px;
    position: relative;
    top: 20px;
}

.custom-complex li span {
    height: 34px !important;
    color: white;
    padding-top: 10px;
    color: black;
}

.progress-indicator.custom-complex > li .bubble {
    height: 38px !important;
    width: 99%;
    border-radius: 0px;
    /*box-shadow: inset -5px 0 12px rgba(0, 0, 0, 0.2);*/
    background: #ededed;
    border-bottom: none;
    min-width: 220px;
}

    .progress-indicator.custom-complex > li .bubble:before,
    .progress-indicator.custom-complex > li .bubble:after {
        display: none;
    }

.progress-indicator > li.completed .bubble {
    background-color: #ec1a22 !important;
    color: white !important;
    border-color: inherit !important;
    border-bottom: none;
}

.tail {
    background-repeat: no-repeat;
    padding-left: 25px !important;
}

.tail-prevcomplete {
    background-image: url("../images/centertail-prevcomplete.png");
}

.tail-complete {
    background-image: url("../images/centertail-complete.png");
}

.tail-incomplete {
    background-image: url("../images/centertail-incomplete.png");
}

#curved-examples {
    display: none;
}

@media(max-width:767px) {
 
        .desktop-only{
        display:none;
    }

    .mobile-only
    {
        display: block;
    }

    .fake-input {
        display: none;
    }

    #map-image {
        display: none;
    }

    #banner-row {
        display: none;
    }

    .progress-indicator.custom-complex {
        display: none;
    }

    .question {
        padding-bottom: 16px;
        padding-top: 16px;
    }

    input[type="button"] {
        margin-top: 18px;
    }

    .mobile-button {
        display: block !important;
        position: fixed;
        top: 14px;
        z-index: 9999;
        width: calc(100% - 200px) !important;
        right: 5px;
    }

    .headerLogo {
        position: relative;
        top: -19px;
    }

    input[type="button"], input[type="text"], input[type="email"], input[type="tel"], select, .text-answer {
        width: 100% !important;
    }

    /*input[type="text"], input[type="email"], input[type="tel"] {
        padding-left: 0px;
    }*/

    .wizard-row {
        padding-bottom: 0px;
    }

    input[type=radio] + label {
        padding: 10px;
        width: 100% !important;
    }

    input[type=radio]:checked + label {
        background-color: #3575bf;
        color: #fff;
    }

    .button-label img {
        display: none;
    }

    .empty {
        display: none;
    }

    div.no-mobile-label:first-of-type {
        padding-top: 10px;
    }

    .first-no-mobile-label {
        margin-top: 12px !important;
    }

    .no-mobile-label {
        margin-bottom: 17px !important;
    }

    input.select-stairlift-button {
        width: auto !important;
    }
}

@media(max-width: 1199px) {
}
