/*** Style for the question picker in Daxplore Explorer ***/

.question-panel {
  padding-right: 5px;
  width: min-content;
  /* position: relative; */
  display: -ms-inline-grid;
  -ms-grid-columns: min-content;
}

.question-panel.perspective-is-top {
  padding-right: 10px;
}

.question-header {
  padding-bottom: 5px;
}

.question-picker {
  border-top: 1px dashed #DDD;
}

.question-picker.above-selected {
  border-top: 1px solid #BBB;
}

.question-section-GROUP {
  border-bottom: 1px dashed #DDD;
  border-left: 1px dashed #DDD;
  border-right: 1px dashed #DDD;
  display: flex;
  flex-direction: column;
}

.question-section-GROUP.above-selected {
  border-bottom: 1px solid #BBB;
}

.question-section-GROUP.selected {
  border-color: #BBB;
  border-style: solid;
  border-top: none;
}

.question-section-header {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 9px;
}

.question-section-header-text {
  align-self: center;
  font-weight: bold;
  margin-right: 7px;
  white-space: nowrap;
}

.question-section-header-text:hover {
  color: #444;
}

.question-group-arrow-wrapper {
  display: flex;
}

.question-group-arrow {
  align-self: center;
}

.question-group-arrow:after {
  content: url('../../img/question-expand-arrow.png');
}

.question-section-questions {
  overflow: hidden;
}

.question-section-questions-inner {
  padding-bottom: 7px;
  padding-left: 5px;
}

.question-question {
  align-items: center;
  cursor: pointer;
  display: flex;
  padding-bottom: 4px;
  padding-right: 5px;
  padding-top: 0;
  white-space: nowrap;
}

.question-question:hover {
  color: #444;
}

.question-question:before {
  content: url('../../img/perspective-radio-empty.png');
  padding-left: 4px;
  padding-right: 5px;
  padding-top: 2px;
}

.question-question.selected:before {
  content: url('../../img/perspective-radio-filled.png');
}
