@font-face {
    font-family: Roboto;
    src: url(/html/fonts/Roboto/Roboto-Regular.ttf);
}

input:-ms-input-placeholder {
    color: #C0C0C0;
}

a {
    color: yellow;
    cursor: pointer;
}

    a:focus,
    a:hover {
        color: yellow;
        text-decoration: underline;
    }

ul {
    margin: 0 auto;
    width: 100%;
    list-style: none;
    padding: 0;
}

.pageloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url(/html/img/pageloader.gif) center no-repeat #fff;
}

.btn > i {
    margin-left: 1em;
}
/* Custom default button */
.btn-default,
.btn-default:hover,
.btn-default:focus {
    color: #333;
    text-shadow: none;
    /* Prevent inheritence from `body` */
    background-color: #fff;
    border: 1px solid #fff;
}
/*
* Base structure
*/
html,
body {
    width: 100%;
    min-height: 100vh;
    color: #fff;
    background-color: #fff;
    background-position: center;
    font-family: Roboto, sans-serif;
    position: relative;
    transition: all 500ms ease-in-out;
}

.container {
}

.box {
    width: 100%;
    position: relative;
}

.header {
    padding: 10px;
    background-color: #fff;
}

.main {
    padding: 5em 0;
    background-image: url('/webseg/branding/cuublehomepage.png');
    background-repeat: no-repeat no-repeat;
    background-size: cover;
    background-position: top;
    box-shadow: inset 0 10px 50px 10px rgba(0, 0, 0, 0.8);
    transition: all 500ms ease-in-out;
    z-index: 1;
}

.box .container {
    height: 100%;
}

.footer {
    text-align: center;
    color: #333;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
    display: none;
    z-index: 10;
    background-color: rgba(0,0,0,.5);
}

.qbl-logo {
    height: 100px;
}

.qbl-btn {
    background-color: #3059C0;
    color: #fff;
    border: 3px solid #E1E4E6;
    border-radius: 10px;
    font-size: 1.5em;
}

.btn:active {
    transform: translateY(3px);
    outline: 0;
    box-shadow: 0px 2px 5px rgba(255, 255, 255, 0.25);
}

.btn:hover,
.btn:focus {
    color: #fff;
    outline: 0;
    -webkit-filter: saturate(150%);
    box-shadow: 0px 10px 20px rgba(255, 255, 255, 0.25);
}

input:focus {
    background-color: lightyellow;
}

.input-lg,
.btn-lg {
    font-size: 22px;
    /*border-radius*/
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.btn-form-group {
    padding: 0;
    padding-right: 5px;
}

    .btn-form-group:last-child {
        padding: 0;
    }

.pin-form {
    display: none;
}

.btn-pin {
    width: 32.5%;
    padding: 16px;
    font-size: 26px;
    border: thin solid #999;
}

.btn-pin-act {
    padding: 4px 16px;
    font-size: 22px;
}

.btn-pin:active,
.btn-pin:hover {
    background-color: #eee;
}

.btn-pin-act:active,
.btn-pin-act:hover {
    color: #666;
}

.configure-link {
    padding: 0 10px;
    font-size: 1.5em;
    background-color: rgba(0, 0, 0, 0.3);
    margin: 5px 15px;
    /*border-radius*/
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.pos-rel {
    position: relative;
}

.rel {
    position: relative;
    width: 100%;
    height: 100%;
}

.help-block {
    color: #ddd;
}

.form-group {
    position: relative;
    margin-bottom: 16px;
    height: 7.5em;
}

    .form-group input[type=text],
    .form-group input[type=password],
    .form-group input[type=email],
    .form-group select {
        width: 100%;
        border: 0;
        color: #000;
    }

    .form-group label {
        display: block;
        color: #fdfdfd;
        margin-bottom: 5px;
        letter-spacing: 1px;
        font-size: 16px;
    }

        .form-group label.label-lg {
            font-size: 22px;
            font-weight: normal;
        }

.form-container:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background-image: linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.75));
    width: 100%;
    height: 100%;
    -webkit-filter: blur(3px);
    -moz-filter: blur(3px);
    -o-filter: blur(3px);
    -ms-filter: blur(3px);
    filter: blur(3px);
}

.text-muted {
    color: #F1F1F1;
    margin-bottom: 10px;
}

.input-group {
    margin-bottom: .5em;
}

    .input-group input {
        border: 0;
        color: #000;
        border-radius: 0 4px 4px 0;
    }

.ans3 {
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid #161616;
}

.ans2 {
    padding: 7px 18px;
    background-color: rgba(0, 0, 0, 0.5);
}

.ans1.red {
    background-color: red;
}

.ans1.blue {
    background-color: blue;
}

.ans1.green {
    background-color: green;
}

.ans1.purple {
    background-color: purple;
}

.ans {
    color: white;
    border: 1px solid #161616;
    cursor: pointer;
    transition: all 300ms ease-in-out;
}

    .ans:hover,
    .ans:focus,
    .ans:hover,
    .ans:active {
        opacity: 1;
        color: #fff;
    }

    .ans.selected {
        background-color: lightyellow;
        color: #000;
    }

#dummyresults {
    display: none;
}

.error-stat {
    text-align: center;
    color: #FFF;
    font-weight: normal;
    margin-top: 1em;
    font-size: 1.5em;
    display: none;
    background-color: rgba(255, 255, 255, 0.4);
    padding: .25em;
    border-radius: 3px;
    box-shadow: inset 0 0 20px #C8C8C8;
    width: 100%;
}

.text-warning {
    color: yellow;
}

.tnc-container {
    height: 90vh;
    top: 5vh;
    overflow-y: auto;
    background-color: #fff;
    color: #000;
    position: relative;
    border-radius: 5px;
    text-shadow: 0 0 0;
    box-shadow: 0 0 10px 5px rgba(255, 255, 255, 0.5);
    border: 5px solid #3d2562;
}

.tnc-content {
    padding: 1em;
    top: 4em;
    position: absolute;
    height: calc(100% - 4em);
    overflow-y: auto;
    overflow-x: hidden;
    text-shadow: 0 0 0;
}

    .tnc-content ul {
        list-style: circle;
        margin-left: 1em;
    }

    .tnc-content address ul {
        list-style: none;
    }

    .tnc-content a {
        color: #000;
    }

        .tnc-content a:hover {
            text-decoration: underline;
        }

.tnc-container nav {
    position: absolute;
    width: 100%;
    line-height: 3em;
    font-size: 1.25em;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    background-color: #EDF0F5;
}

    .tnc-container nav li {
        width: calc(100% / 4);
        float: left;
        text-align: center;
    }

    .tnc-container nav ul {
        float: left;
        width: calc(100% - 3em);
    }

    .tnc-container nav a {
        color: #3D2562;
        display: block;
    }

    .tnc-container nav li a.active {
        border-bottom: 3px solid #3D2562;
    }

.login-after-btn {
    display: none;
}

.form-container {
    padding: 2em;
    z-index: 1;
    transition: all 500ms ease-in-out;
}

.form-container-login h4 {
    text-align: right;
    margin-bottom: 1em;
}

.form-container-login {
    margin-top: 9em;
}

.input-result {
    color: #FFF;
    font-weight: normal;
    margin-top: 5px;
    display: none;
    background-color: black; /* rgba(128, 128, 128, 0.4);*/
    padding: .5em;
    font-size: 16px;
    border-radius: 5px;
    box-shadow: inset 0 0 20px #C8C8C8;
    width: 150%;
}

.input-result {
    margin-top: -3em;
    margin-left: -13em;
}

.checkbox-clearfix .input-result {
    margin-top: -2em;
}

.input-result-btn {
    line-height: 1.25em;
}

.input-result a {
    color: blue;
}

.lic-options {
    width: 100%;
}

    .lic-options button {
        font-size: 2.5em !important;
        border-bottom: 2px ridge #C0C0C0;
        text-align: left;
    }

        .lic-options button i {
            float: left;
            margin-right: .5em;
            line-height: 1.25em;
        }

.form-container .btn-group-vertical > .btn:hover {
    color: #000;
    background-color: #e7e7e7;
    font-weight: bold;
}

.form-container .btn-group-vertical > .btn:active {
    color: #000;
    background-color: #ccc;
    font-weight: bold;
}

.form-container .btn-group-vertical > .btn:focus {
    color: #000;
}

.nav-brand {
    float: left;
}

.nav-list {
    width: auto;
    float: right;
    line-height: 100px;
    color: #000;
}

    .nav-list li {
        float: left;
        margin-left: 1em;
    }

    .nav-list a:not(.btn) {
        color: #000;
    }

.text-muted {
    color: #777;
}

.text-success {
    color: #02FF02;
}

.text-info {
    color: #00C0FF;
}

.text-3d {
    text-shadow: 3px 2px 3px #000;
}

.btn-group button {
    display: inline-block;
    margin-right: 1em;
    margin-bottom: .15em;
    border-radius: 5px !important;
}

.ans .fa-check {
    color: green;
    display: none;
}

.ans.selected .fa-check {
    display: inline-block;
}

.security-questions .form-group {
    background-color: #FFF;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px 1px rgba(255, 255, 255, 0.6);
}

    .security-questions .form-group label {
        color: #000;
    }

    .security-questions .form-group input {
        border: thin solid #666;
        background-color: #fdfdfd;
    }

        .security-questions .form-group input:focus {
            background-color: lightyellow;
        }

.error-stat a {
    color: yellow !important;
}

.checkbox {
    padding: 0;
}

    .checkbox > label:first-child {
        float: left;
    }

    .checkbox > label:last-child {
        float: right;
    }

    .checkbox a {
        color: yellow;
    }

    .checkbox input {
        opacity: 0;
    }

    .checkbox > i {
        margin-left: -20px;
    }

@media only screen and (max-width: 480px) {
    .header {
        padding: 10px 0;
    }

    .nav-brand {
        float: none;
        display: block;
        text-align: center;
    }

        .nav-brand img {
            height: 75px;
        }

    .nav-list {
        width: 100%;
        line-height: 48px;
        margin-top: 10px;
    }

        .nav-list li {
            margin-left: 10px;
        }

        .nav-list .qbl-btn {
            font-size: 1em;
        }

        .nav-list li:nth-child(2n) {
            display: none;
        }
}

.tooltip {
    opacity: 1;
}

.tooltipster-default .tooltipster-content {
    font-family: Roboto;
    font-size: 18px;
    line-height: 22px;
    padding: 3px 5px;
    letter-spacing: 3px;
    float: left;
}

.term {
    color: blue !important;
}

@media only screen and (max-width: 767px) {
    .nav-brand {
        float: none;
        display: block;
        text-align: center;
    }

    .nav-list {
        width: 100%;
        line-height: 48px;
        margin-top: 10px;
    }

        .nav-list li {
            margin-left: 10px;
        }

    .tnc-container nav {
        font-size: 1em;
    }
}

@media only screen and (max-width: 1100px) {
    .input-result {
        margin-left: -10em !important;
    }
}

*:focus {
    border: 4px solid yellow !important;
}

.tooltip {
    opacity: 1;
}

.tooltipster-default .tooltipster-content {
    font-family: Roboto;
    font-size: 18px;
    line-height: 22px;
    padding: 3px 5px;
    letter-spacing: 3px;
    float: left;
}

.term {
    color: blue !important;
}

button.transparenttooltip {
    background-color: transparent !important;
    border: 0;
    color: inherit;
    width: inherit;
    font-size: inherit;
    text-align: inherit;
}

    button.transparenttooltip:focus {
        border: 0px !important;
        width: 0;
        height: 0;
    }
