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

a {
    font-size: 24px;
}

.pc-txt-block a {
    font-size: 14px;
}

/* Styling text-display segments (used as sub-headers within question groups) */
.text-display-only > .question-title-container {
    background-color: #e5e8e8;
    font-weight: bold;
    border-radius: 15px;
}
.text-display-only > .answer-container {
    display:none;
}
.text-display-only > .question-valid-container {
    display:none;
}
.text-display-only.question-container {
    margin-top: 1em;
    border-bottom: 0px;
    margin-bottom: 1em;
}
.text-display-only > .question-title-container > .question-text > .ls-label-question {
    color: #2c3e50;
    font-size: 18px;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.font-size-18 > .question-title-container > .question-text > .ls-label-question {
    font-size: 18px;
}

/* Styling visible equation results */
.equation-text > .answer-container {
    display:none;
}
.equation-text > .question-valid-container {
    display:none;
}
.equation-text > .question-title-container {
    background-color: #f6ddcc;
    border-radius: 15px;
}
.equation-text.question-container {
    border-bottom: 0px;
}
.equation-text > .question-help-container {
    border: 0;
}

/* Centers an image in an image question*/
.image-question .ls-label-question p:first-child {
    text-align: center;
}

/* Remove hyphenation (used for survey name) */
.no-hyphenation {
  -moz-hyphens: none !important;
  -ms-hyphens: none !important;
  -webkit-hyphens: none !important;
  hyphens: none; 
}

/* Style help text (appears below question) */
.ls-questionhelp {
    color: #3498db; /* light blue */
    font-style: italic;
}

/* Change asterisk color (signalling mandatory questions) */
.asterisk {
    color: #5076FF;
}



