/******************
    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
*/
@media (max-width: 768px) {
    /* Hides the main survey header/title area on mobile screens */
    .survey-name, .name-container, h1.survey-name {
        display: none !important;
    }
    /* Reduces excessive spacing at the top of the mobile page */
    .survey-main, #main-container {
        padding-top: 10px !important;
    }
}

body {
    line-height: 10px;
    font-size: 0.7rem;
}
.question-container {
    margin-top: 3em;
    margin-bottom: 1em !important;
}
.question-container .ls-label-question {
        font-size: 1rem;
            font-weight: 200;
                line-height: 12px;
}

.form-control {
                    line-height: 12px;
                    padding: 2px 2px;
}


/* Cria o botãozinho "?" no título da pergunta */
.question-text::after {
  content: "?";
  display: inline-block;
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  border-radius: 50%;
  background: #dbe2ec;
  color: #1a3c6e;
  font-weight: bold;
  font-size: 12px;
  margin-left: 8px;
  cursor: help;
}

/* Esconde o help e mostra no hover da pergunta */
 .ls-questionhelp  { display: none; }
.ls-question:hover .ls-questionhelp .question-help { display: block; /* + ls-questionhelp */ }


