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

/* roboto-regular - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v18-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Roboto'), local('Roboto-Regular'),
       url('../fonts/roboto-v18-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v18-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v18-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v18-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v18-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-italic - latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/roboto-v18-latin-italic.eot'); /* IE9 Compat Modes */
  src: local('Roboto Italic'), local('Roboto-Italic'),
       url('../fonts/roboto-v18-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v18-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v18-latin-italic.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v18-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v18-latin-italic.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-700 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-v18-latin-700.eot'); /* IE9 Compat Modes */
  src: local('Roboto Bold'), local('Roboto-Bold'),
       url('../fonts/roboto-v18-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v18-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v18-latin-700.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v18-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v18-latin-700.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-700italic - latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/roboto-v18-latin-700italic.eot'); /* IE9 Compat Modes */
  src: local('Roboto Bold Italic'), local('Roboto-BoldItalic'),
       url('../fonts/roboto-v18-latin-700italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v18-latin-700italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v18-latin-700italic.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v18-latin-700italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v18-latin-700italic.svg#Roboto') format('svg'); /* Legacy iOS */
}

:root {
    --body-background-color:#fff;
		--text-color: #444;
    --primary-color: #2e3548;
		--secondary-color: #2191d0;
    --radio-item-color:#444;
    --radio-item-fill-color:#2e3548;
    --checkbox-item-fill-color:#2e3548;
    --question-background-color:#2e3548;
    --question-text-color:white;
    --navbar-background-color:#2e3548;
		--text-font-size: 16px;
		--question-font-size: 20px;
}

body{
  font-family:"Roboto", helvetica, arial, sans-serif;
  background-color:var(--body-background-color);
	font-size: var(--text-font-size);
	color: var(--text-color);
	padding-top: 0;
}

.navbar-inverse{
  background-color:var(--navbar-background-color);
}

.question-container{
  background-color: white;
  border: none;
}

.question-container.row {
    margin-right: -15px;
    margin-left: -15px;
		margin-bottom: 15px;
}

.space-col{
  margin-top:0;
  margin-bottom:0;
}

.group-title{
  margin-bottom:1em;
}

.question-title-container{
  font-weight: bold;
  color: var(--question-text-color);
  background: var(--primary-color);
	padding: 5px 15px;
}

.question-valid-container{
  //background: lightgreen;
	font-size: 14px;
}

.ls-question-help, .ls-questionhelp {
  margin-top: 5px;
}

.answer-container{
  padding-top:15px;
  padding-bottom:15px;
}

.ls-answers{
  padding-top:0px;
  padding-bottom:0px;
}

.progress{
  margin-top:20px;
}

.btn-primary{
  background:#eee;
  color:#444;
  border:1px solid #ddd;
}

li{
  overflow:auto;
}

.btn-primary.active, 
.btn-primary.active:hover, 
.btn-primary:active:hover, 
.button-primary:focus, 
.button-primary.focus, 
.btn-primary.active.focus,
.btn-primary:hover{
  background-color:var(--primary-color);
  border:none;
  -webkit-box-shadow: none;
  color:lightyellow;
  box-shadow: none;
}

.btn-primary{
	background-color: var(--primary-color);
	color: #fff;
	border: none;
}

.list-radio .radio-item {
  position: relative;
  padding: 0 6px;
  padding-left:0;
  margin: 10px 0 0;
}

.list-radio .radio-item input[type='radio'] {
  display: none;
}

.list-radio .radio-item label {
  color: var(--text-color);
  font-weight: normal;
  padding-left:0;
}

.list-radio .radio-item label:before {
  content: " ";
  display: inline-block;
  position: relative;
  top: 3px;
  margin: 0 5px 0 0;
  border: 1px solid var(--radio-item-color);
  background-color: transparent;
}

.list-radio .radio-item input[type=radio]:checked + label:after {
  border-radius: 11px;
  width: 11px;
  height: 11px;
  position: absolute;
  top: 6px;
  left: 9px;
  content: " ";
}

.list-radio .radio-item label::after{
  margin-left:-6px;
  background-color:var(--radio-item-fill-color);
}

.list-radio  .ls-answers.radio-list li:first-child{
  margin-top:0;
}

ul.slider-list li:nth-child(odd){
  background:#eee;
}

.checkbox-item label::after{
  color:white;
  background-color:var(--checkbox-item-fill-color);
}

.no-tooltip .tooltip{
  display:none;
}

.slider-list li.form-group{
  margin-bottom:0;
  padding-bottom:15px;
}

.table-bordered,
.table-bordered > tbody >tr > th,
.table-bordered > tbody >tr > td,
.table-bordered > thead >tr > th,
.table-bordered > thead >tr > td{
  border:none;
}

.table-bordered thead tr{
  border-top:1px solid #eee;
}

.table-bordered tr{
  border-bottom:1px solid #eee;
}

.survey-welcome{
	background-color: #fff;
	padding: 15px;
	color: var(--text-color);
	line-height: 24px;
}

.text-muted.question-number{
	color: #fff;
}

.question-code{
	color: #999;
	font-style: italic;
}

.question-title-container{
	font-size: 20px;
	font-weight: normal
}

.radio-list label{
	font-size: 16px;
}

.ls-questionhelp{
	font-size: 14px;
}

.group-description{
	margin-bottom: 30px;
}

.group-description.well{
	box-shadow: none;
	border: none;
	border-radius: 0;
	background-color: transparent;
}

.answers-list ul{
	margin-bottom: 0;
}

#navbar{
	background-color: white;
}

.navbar{
	border-bottom: 5px solid #93cdf3;
}

.logo-container>img {
	max-height: 122px;  
}

.ls-link-clearall{
	color: #aaa;
	font-size: 80%;
}

.leaflet-container{
	margin-top:15px;
}

.group-description li{
	overflow: visible;
	line-height: 22px;
	margin-bottom: 5px;
}

.js .ls-disabled{
	opacity: 0.7;
}

.dieh .col-sm-2{
	padding-right:0;
	padding-left: 5px;
	margin-left:9px;
	border-left: 1px solid grey;
}

.dieh .ls-answers li.answer-item{
	padding: 0;
}

@media (min-width: 761px){
	.language_change_container {
		height: auto;
	}
}

.noquestion .question-title-container{
	display: none;
}

li.dropdown{
	overflow: visible;
}

@media (min-width: 768px) {
  .checkbox-list  .form-inline .form-group{
    display: block;
    width: 100%;
  }
  
  .checkbox-list .form-inline .form-control{
    width: 100%;
  }
}

#main-col{
    padding-bottom:15em;
}