/******************
    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
*/

.navbar-default {
    background-color: #0C0A27;
    border-color: transparent;
    min-width: 75%;
}


.navbar-default .navbar-brand {
    color: #FFFFFF
}

.footer {
    float: left;
    width: 100%;
    padding-top: 15;
    background-color: #0C0A27;
    height: 150px;
}
.footer a{
    color: #FFFFFF;
}
.footer-wrapper h3 {
    color: #fff;
}
.secondary-nav {
    margin: 34px 0;
}
.secondary-nav ul {
    display: flex;
    align-items: stretch; /* Default */
    justify-content: space-between;
    width: 80%;
    margin: auto;
    padding: auto;
}
.secondary-nav li {
    display: block;
    flex: 0 1 auto; /* Default */
    list-style-type: none;
}
.sqs-block-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    margin: auto;
    padding: auto;
}
.ls-question-message {
    color: #FFFFFF;
}
.text-muted {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-primary-rgb),var(--bs-text-opacity))!important;
    font-size: 16px;
}
/* Entire Text Display question */
.question-container.boilerplate {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: .5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
    overflow: hidden;

    /* Override theme */
    border-bottom: none !important;
}

/* Remove the inner blue box entirely */
.question-container.boilerplate .question-title-container {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 1.5rem;
}

/* Make all text black */
.question-container.boilerplate .question-title-container * {
    color: #212529 !important;
}

/* Hide the validation strip that Text Display questions don't need */
.question-container.boilerplate .question-valid-container {
    display: none;
}

/* Hide the empty answer container */
.question-container.boilerplate .answer-container {
    display: none;
}

