﻿/*
    QUBElive 2.0
    Styling for qubelive.questgates.co.uk
*/

/* Set up ------------------------------------------------------------------- */

body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    font-family: din-2014-regular, din-2014, Questrial, Helvetica Neue, Helvetica, Arial, sans-serif !important;
    -webkit-font-smoothing: antialiased !important;
    font-size:18px;

}

.login-page {
    background: url('/Content/img/background-realestate.jpg') top center no-repeat;
    background-attachment: fixed;
}

main {
    flex: 1 0 auto;
}

footer {
    background-color: rgb(36, 70, 102);
    color: #fff;
    padding-top: 30px;
    margin-top: 64px;
}

section.section-spaced {
    padding-top: 3rem;
}

section.padded {
    margin: 32px;
}

section.case-section {
    margin-top: 2px;
}

.hidden {
    display: none;
    visibility: hidden;
}
label{
    color: black;
}

.nobr {
    white-space: nowrap; 
}

table.summary-table th, table.summary-table td {
    padding: 15px 5px 15px 5px;
}

.organisation-logo {
    max-height: 50px;
}

/* Contact Bar ------------------------------------------------------------ */
.contact-bar {
    position: fixed;
    z-index: 9999;
    width: 100%;
    background-color: rgb(165, 33, 61);
    color: #fff;
    height: 36px;
    padding-top: 8px;
}

    .contact-bar a {
        color: #fff;
    }

.contact-bar-spacer {
    padding: 6px;
}

/* Navigation menu -------------------------------------------------------- */

.navbar-fixed {
    margin-top: 36px;
}

.navbar-fixed, nav {
    height: 118px;
    box-shadow: none;
}

ul#nav-mobile, ul#nav-mobile li, ul#nav-mobile li a {
    color: #003366;
    /*height: 118px;
    line-height: 118px;*/
    text-transform: uppercase;
}

    ul#nav-mobile li a i {
        /*line-height: 118px;*/
    }

.brand-logo img {
    margin-top: 28px;
    max-width: 180px;
}


/*CSS LOGIN PAGE-----------------------------------*/
.LoginForm input[type=text],
.LoginForm input[type=password] {
    display: block;
    width: 100%;
    height: 20px;
    padding: 6px 12px;
    font-size: 18px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: none !important;
    margin-bottom: 0px !important;
}

.LoginForm label {
    color: white;
    font-size: 18px;
}

/* END CSS LOGIN PAGE-------------------------------*/


/* CSS PAGE LOGOUT----------------------------------*/
.TitelLogout {
    color: #ffffff !important;
    font-size: 28px;
    text-align: center;
}
/* END CSS PAGE LOGOUT*/

/* Theme colours ---------------------------------------------------------- */
/*
    #bc2c47 questgates  red
    #003366 questgates  blue
*/
.qg-blue {
    background-color: #003366 !important;
}

.qg-red {
    background-color: #bc2c47 !important;
}

.qg-green {
    background-color: #00c853 !important;
}

.qg-light-blue {
    background-color: #03a9f4 !important;
}

.qg-blue-text {
    color: #003366 !important;
}

.qg-red-text {
    color: #bc2c47 !important;
}

.qg-green-text {
    color: #00c853 !important;
}


.qg-light-blue-text {
    color: #03a9f4 !important;
}


/* data fields -------------------------------------------------------------- */



/* project plan ------------------------------------------------------------- */
.flexer, .progress-indicator {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

    .no-flexer, .progress-indicator.stacked {
        display: block;
    }

.no-flexer-element {
    -ms-flex: 0;
    -webkit-flex: 0;
    -moz-flex: 0;
    flex: 0;
}

.flexer-element, .progress-indicator > li {
    -ms-flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    flex: 1;
}

.progress-indicator {
    margin: 0 0 1em;
    padding: 0;
    font-size: 80%;
    text-transform: uppercase;
}

    .progress-indicator > li {
        list-style: none;
        text-align: center;
        width: auto;
        padding: 0;
        margin: 0;
        position: relative;
        text-overflow: ellipsis;
        color: #bbb;
        display: block;
    }

        .progress-indicator > li:hover {
            color: #6f6f6f;
        }

        .progress-indicator > li.completed, .progress-indicator > li.completed .bubble {
            color: #65d074;
        }

        .progress-indicator > li .bubble {
            border-radius: 1000px;
            width: 20px;
            height: 20px;
            background-color: #bbb;
            display: block;
            margin: 0 auto .5em;
            border-bottom: 1px solid #888;
        }

            .progress-indicator > li .bubble:after, .progress-indicator > li .bubble:before {
                display: block;
                position: absolute;
                top: 9px;
                width: 100%;
                height: 3px;
                content: '';
                background-color: #bbb;
            }

        .progress-indicator > li.completed .bubble, .progress-indicator > li.completed .bubble:after, .progress-indicator > li.completed .bubble:before {
            background-color: #65d074;
            border-color: #247830;
        }

        .progress-indicator > li .bubble:before {
            left: 0;
        }

        .progress-indicator > li .bubble:after {
            right: 0;
        }

        .progress-indicator > li.active, .progress-indicator > li.active .bubble {
            color: #337AB7;
        }

            .progress-indicator > li.active .bubble, .progress-indicator > li.active .bubble:after, .progress-indicator > li.active .bubble:before {
                background-color: #337AB7;
                border-color: #122a3f;
            }

        .progress-indicator > li a:hover .bubble, .progress-indicator > li a:hover .bubble:after, .progress-indicator > li a:hover .bubble:before {
            background-color: #5671d0;
            border-color: #1f306e;
        }

        .progress-indicator > li a:hover .bubble {
            color: #5671d0;
        }

        .progress-indicator > li.danger .bubble, .progress-indicator > li.danger .bubble:after, .progress-indicator > li.danger .bubble:before {
            background-color: #d3140f;
            border-color: #440605;
        }

        .progress-indicator > li.danger .bubble {
            color: #d3140f;
        }

        .progress-indicator > li.warning .bubble, .progress-indicator > li.warning .bubble:after, .progress-indicator > li.warning .bubble:before {
            background-color: #edb10a;
            border-color: #5a4304;
        }

        .progress-indicator > li.warning .bubble {
            color: #edb10a;
        }

        .progress-indicator > li.info .bubble, .progress-indicator > li.info .bubble:after, .progress-indicator > li.info .bubble:before {
            background-color: #5b32d6;
            border-color: #25135d;
        }

        .progress-indicator > li.info .bubble {
            color: #5b32d6;
        }

    .progress-indicator.stacked > li {
        text-indent: -10px;
        text-align: center;
        display: block;
    }

        .progress-indicator.stacked > li .bubble:after, .progress-indicator.stacked > li .bubble:before {
            left: 50%;
            margin-left: -1.5px;
            width: 3px;
            height: 100%;
        }

    .progress-indicator.stacked .stacked-text {
        position: relative;
        z-index: 10;
        top: 0;
        margin-left: 60% !important;
        width: 45% !important;
        display: inline-block;
        text-align: left;
        line-height: 1.2em;
    }

    .progress-indicator.stacked > li a {
        border: none;
    }

    .progress-indicator.stacked.nocenter > li .bubble {
        margin-left: 0;
        margin-right: 0;
    }

        .progress-indicator.stacked.nocenter > li .bubble:after, .progress-indicator.stacked.nocenter > li .bubble:before {
            left: 10px;
        }

    .progress-indicator.stacked.nocenter .stacked-text {
        width: auto !important;
        display: block;
        margin-left: 40px !important;
    }


#DivFormDataFields .caret, #DivFormDataFields .Asterisk, #DivFormDataFields .AllAsterisk {
    display: none !important
}

@media handheld,screen and (max-width:400px) {
    .progress-indicator {
        font-size: 60%;
    }
}

.progress-indicator {
    text-transform: none;
}

    .progress-indicator li {
        font-size: 18px;
        color: #036;
    }

    .progress-indicator > li .bubble:after, .progress-indicator > li .bubble:before {
        height: 9px;
    }

    .progress-indicator > li .bubble {
        width: 28px;
        height: 28px;
    }

    .progress-indicator > li.completed, .progress-indicator > li.completed .bubble {
        font-weight: bold;
    }

ul.progress-indicator.stacked {
    margin-left: -120px;
}

.progress-indicator.stacked .stacked-text {
    top: -30px;
}

.plan-text:hover {
    cursor: pointer;
}


/* Remove IE default X */


.TxtCross {
    background: #fff url(/Content/img/mJotv.gif) no-repeat right -10px center;
    border: 1px solid #999;
    padding: 3px 18px 3px 4px; /* Use the same right padding (18) in jQ! */
    border-radius: 3px;
    transition: background 0.4s;
}

    .TxtCross.x {
        background-position: right 5px center;
    }
    /* (jQ) Show icon */
    .TxtCross.onX {
        cursor: pointer;
    }
    /* (jQ) hover cursor style */
    .TxtCross::-ms-clear {
        display: none;
        width: 0;
        height: 0;
    }
/* Remove IE default X */

#section-Addcase h6, #section-DataFields h6 {
    background-color: rgb(36, 70, 102);
    color: white;
    height: 28px;
    font-size: 26px !important;
    padding: 12px 0 12px 0;
    height: auto;
    margin: 24px 0 48px 0;
}

    #section-Addcase h6 span, #section-DataFields h6 span {
        margin-left: 10px !important;
    }

.Asterisk, .AsteriskAll {
    color: red;
}

.tabs .tab a:hover, .tabs .tab a.active {
    color: white;
    background-color: rgba(0,0,0,0.1);
}

.tabs .tab a:hover, .tabs .tab a {
    color: white;
}

.modal-content {
    z-index: 9999;
}

@media only screen and (min-width: 993px) {
    .container {
        width: 95% !important;
    }
}

/* contact selectors -------------------------------------------------------- */

.contact-selector {
}

    .contact-selector .input-field i.prefix {
        padding-top: 8px;
    }

    .contact-selector .input-field input {
        margin-bottom: 0;
        border: 0;
    }

.contact-selector__results {
    z-index: 9999;
    margin-top: -18px;
    border-bottom: 1px #9e9e9e solid;
}

.ClassPlacement {
    text-overflow: ellipsis;
    display: inline-block;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    vertical-align: middle;
    font-size: 18px;
}


.picker__table{
    margin-top:30px !important;
}


.country-flag {
    max-height: 64px;
    max-width: 64px;
}

/*Dropdown tweak*/

.dropdown-content-small ul.dropdown-content {
    height: 200px;
}