/******************
    User custom CSS
    ---------------

    In this file you can add your own custom CSS
    It will be loaded last, so you can override any other property.
    Also, it will never be updated. So if you inheritate a core template and just add here some CSS, you'll still benefit of all the updates
*/
.container-fluid{
    background-color: rgb(0,53,90);
    border-color: rgb(0,53,90);
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(255, 255, 255, .8);
}

.question-help-container {
        background-color: rgba(0,53,90,1);
}

.bg-primary {
    --bs-bg-opacity: 1;
    background-color: rgb(0,53,90);
}

.btn-primary{
    background: rgb(0,53,90);
    border-color: rgb(0,53,90);
}

.btn-default {
    background-color: rgb(0,53,90);
    border-color: rgb(0,53,90);
}

/* Adjust colors for question container */
.question-container {
    --bs-primary: #00355A;
    --bs-primary-rgb: 0, 53, 90;
    --bs-info: #ffffff;
    --bs-info-rgb: 255,255,255;
}

/* Center question help text */
.question-container .question-help-container {
    position: relative;
    text-align: center;
    /* Remove ugly borders to the left and right */
    border: 0;
}

.question-container .ls-question-message {
    display: inline;
}

.question-container .ls-questionhelp::before {
    display: inline;
    position: relative;
    left: 0 !important;
}

/* Align form labels to the left for all screen sizes */
.question-container .control-label {
    text-align: left !important;
}

/* Do not right-align number inputs */
.question-container input[data-number="1"] {
    text-align: inherit;
}

/* Make text on print summary white */
.question-container-printanswers {
    color: white;
}
