.graph-title {
  box-sizing: border-box;
  height:60px;
  line-height: 60px;
  font-size:14px;
  font-family: open_sanssemibold;
  padding-left: 20px;
  width: 100%;
  margin-bottom:1px;
  background:white;
  letter-spacing: 2px;
  text-transform: uppercase;

}

.graph-body {
  position: relative;
  width:100%;
  height:auto;
}

.graph-body .graph-columns{
  position: absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  z-index: -1;
}

.graph-body .graph-columns .graph-column{
  position:relative;
  flex-grow: 1;
  flex-shrink:1;
  height:inherit;
}

.graph-body .graph-columns .graph-column .column-body{
  height: calc(100% - 40px);
  width: 100%;
  box-sizing: border-box;
  border-right:1px solid #ddd;
}

.graph-body .graph-columns .graph-column .column-label{
  position: relative;
  height: 40px;
  width: 100%;
  box-sizing: border-box;
}

.graph-body .graph-columns .graph-column .column-label .value-box{
  height: 40px;
  line-height: 40px;
  width: 100px;
  position: absolute;
  top:0x;
  right:-50px;
  font-size:12px;
  color:black;
  text-align: center;
  font-family: open_sanssemibold;
  color:#666;
}

.graph-body .graph-columns .label-column{
  flex-grow: 0;
  flex-shrink:0;
  flex-basis:140px;
  box-sizing: border-box;
}


.graph-body .graph-rows{
  position: relative;
  width:100%;
  height:auto;
  z-index: 10;

}

.graph-body .graph-rows .graph-row{
  position:relative;
  flex-grow: 1;
  flex-shrink:1;
  height:40px;
  margin-bottom:1px;
  background-color:rgba(255,255,255,0.5);
  display: flex;

}

.graph-body .graph-rows .row-label{
  flex-basis:140px;
  flex-grow: 0;
  flex-shrink: 0;
  line-height: 40px;
  font-size:12px;
  font-family: open_sanssemibold;
  text-align: right;
  padding-right:10px;
  box-sizing: border-box;
  text-transform: uppercase;

}

.graph-body .graph-rows .row-bar{
  flex-grow: 1;
  flex-shrink: 0;
  height:40px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.graph-body .graph-rows .row-bar .row-fill{
  flex-basis:0%;
  flex-grow: 0;
  flex-shrink: 0;
  height:24px;
}

.graph-body .graph-rows .row-bar .row-fill-value{
  flex-grow: 1;
  flex-shrink: 0;
  line-height: 40px;
  padding-left:10px;
  font-family: open_sanssemibold;
  box-sizing: border-box;
  font-size:12px;
}

.graph-body .graph-rows .label-row{
  width:100%;
  height:40px;
  box-sizing: border-box;
  background:white;
}
