
.report-type-item {
  margin-top:1px;
  width:100%;
  padding:20px;
  box-sizing:border-box;
  line-height:1.4;
  font-size:14px;
  background-color:white;
  cursor:pointer;
  display: flex;
  flex-direction: row;
  opacity: 0.7;
}

.report-type-item .report-icon {
  height:100%;
  flex-basis:20px;
  flex-grow:0;
  flex-shrink:0;
  text-align: left;

}

.report-type-item .report-desc {
  height:100%;
  flex-grow:1;
  text-align: left;
}

.report-type-item:hover {
  background-color:rgba(255,255,255,0.3);
  opacity: 1;
}

.report-type-item.selected {
  background-color:white;
  opacity: 1;
}

.report-options {
  margin-top:1px;
  width:100%;
  box-sizing:border-box;
  line-height:1.4;
  font-size:14px;
  background-color:white;
}

.report-options-title {
  width:100%;
  padding:20px;
  box-sizing:border-box;
  line-height:1.4;
  font-size:14px;
  background-color:white;
}

.report-options-content {
  width:100%;
  padding:20px;
  padding-top:0px;
  box-sizing:border-box;
  line-height:1.4;
  font-size:14px;
  background-color:white;
}



.report-options.uncollapsed .report-options-title:hover {
  background-color:#eee;
}
.report-options.collapsed .report-options-title:hover {
  background-color:#eee;
}

.report-options.collapsed .report-options-content {
  display: none;
}

.report-options .radio, .report-options .checkbox {
  display: inline-block;
  width:49%;
}
