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

*/

:root {
    --theme-font-family: "Plus Jakarta Sans", Tahoma, Geneva, Helvetica, Arial, sans-serif;
    --theme-font-size: 16px;
    --theme-body-background-color: #ebebeb;
    --theme-h1-color: #273477;
    --theme-h1-font-size: 26px;
    --theme-h3-group-title-color: #273477;
    --theme-text-primary-color: #333;
    --theme-text-info-color: #273477;
    --theme-text-danger-color: #ec6607;
    --theme-btn-primary-color: #ffffff;
    --theme-btn-primary-background-color: #273477;
    --theme-btn-primary-active-color: #ffffff;
    --theme-btn-primary-active-background-color: #6ea7d6;
    --theme-navbar-default-background-color: #ffffff;
    --theme-navbar-default-box-shadow: none;
    --theme-container-background-color: #ffffff;
    --theme-container-border: solid 1px #cccccc;
    --theme-container-border-radius: 0;
    --theme-progress-background-color: #ffffff;
    --theme-progress-bar-background-color: #273477;
    --theme-checked-label-color: #273477;
}

html {
    font-size: var(--theme-font-size);
    font-family: var(--theme-font-family);
}

body {
    background-color: var(--theme-body-background-color);
    max-width: 1170px;
    margin: 0 auto;
    font-size: var(--theme-font-size);
    font-family: var(--theme-font-family);
}

h1 {
    font-size: var(--theme-h1-font-size);
    color: var(--theme-h1-color);
}

.font-arial {
    font-family: var(--theme-font-family);
}

.text-primary {
    color:  var(--theme-text-primary-color);
}

.text-info {
    color: var(--theme-text-info-color);
}

.text-danger {
    color: var(--theme-text-danger-color);
}

/* Navbar */
.navbar-default {
    background-color: var(--theme-navbar-default-background-color);
    margin: 0 auto;
    box-shadow: var(--theme-navbar-default-box-shadow);
}

.navbar-content-container {
    max-width: 1170px;
    margin: 0 auto;
}

.number-of-questions {
    margin-top: 2rem;
}

#welcome-container {
    border: var(--theme-container-border);
    background-color: var(--theme-container-background-color);
    border-radius: var(--theme-container-border-radius);
    padding: 2rem;
    margin-top: 2em;
    margin-bottom: 2em;
}

.survey-welcome.h4 {
    font-size:  1rem;
    line-height: inherit;
}

h1.survey-name {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.top-container.space-col {
    margin-bottom: 1rem;
}

.h3.group-title {
    margin-top:  0;
    color: var(--theme-h3-group-title-color);
}

.btn-primary  {
    border-color: var(--theme-btn-primary-background-color);
    color: var(--theme-btn-primary-color);
    background-color: var(--theme-btn-primary-background-color);
    opacity: 1;
    transition: opacity .15s ease-in-out;
}

.btn-primary .active ,  .btn-primary:active {
  background-color: var(--theme-btn-primary-active-background-color);
  color: var(--theme-btn-primary-active-color);
  border-color: var(--theme-btn-primary-active-background-color);
}

.btn-primary:hover {
    opacity: 0.7;
}

.btn-primary .active:hover {

}

.question-container {
    margin-bottom: 2em;
    border: var(--theme-container-border);
    background-color: var(--theme-container-background-color);
    border-radius: var(--theme-container-border-radius);
    padding-bottom: 1em;
}

.question-text {
    font-size:  1.3rem;
    margin: 1rem 0;
}

.ls-question-message {
    margin-bottom: 1rem;
}

.completed-wrapper {
    background-color: var(--theme-container-background-color);
    border-radius: var(--theme-container-border-radius);
    padding: 2rem;
    margin-top: 2em;
    margin-bottom: 2em;
    border: var(--theme-container-border);
}

/* Progress bar */
.progress {
    margin: 0 auto;
    background-color: var(--theme-progress-background-color);
}

.progress-bar {
    background-color: var(--theme-progress-bar-background-color);
}

label::after {
    background-color: #fff
}

input[type=radio]:checked + label, input[type=checkbox]:checked + label {
    color: var(--theme-checked-label-color);
}

.button-item input[type=radio]:checked + label, .button-item input[type=checkbox]:checked + label {
    color: var(--theme-btn-primary-active-color);
}

.save-survey-form .asterisk {
    display:  none;
}

.well {
    background-color: #ffffff;    
}

#surveys-list-jumbotron {
	display: none;
}

#surveyListFooter {
    display: none;
}

.survey-list-heading {
    display: none;
}
