/*** ==============================================================
            TABLE BAR CHART
============================================================== ***/

.graph {
    position: relative;
    float: right;
}
.graph ul {
    list-style: none outside none;
    margin: 0;
    padding: 0;
}
.legend {
    bottom: 0;
    margin:20px 0 0;
    padding: 0;
    position: relative;
    float:left;
    text-align: center;
    width: 100%;
}
.legend li {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.1px;
    line-height: 16px;
    margin: 0;
    padding: 5px 20px;
}
.legend span.icon {
   background-position: 50% 0;
   border-radius: 2px;
   display: block;
   float: left;
   height: 16px;
   margin: 2px 10px 0 0;
   width: 16px;
}

.x-axis {
   bottom: 12px;
   color: #555;
   position: absolute;
   text-align: center;
}

.x-axis li {
   float: left;
   margin: 0 10px;
}

.y-axis {
   color: #555;
   position: absolute;
   text-align: left;
}

.y-axis ul {
    padding: 0px;
    margin: 0px;
}

.y-axis li {
   border-top: 1px solid #ccc;
   display: block;
}

.y-axis li span {
   display: block;
   position: relative;
   text-align: right;
}
.x-axis li span {
    font-size: 11px;
}
.bars {
    position: absolute;
    width: 100%;
    z-index: 10;
}
.bar-group {
    float: left;
    height: 100%;
    position: relative;
    margin: 0 10px;
}
.bar {
    border-radius: 3px 3px 0 0;
    bottom: 0;
    position: absolute;
    text-align: center;
    #cursor: pointer;
    display: block;
}

.bar span {
    display: none;
    font-family: oswald;
    font-size: 11px;
    margin-top: -25px;
    position: relative;
}
.item-0 {
    background: #1d3962;
    border-color: #1d3962;
}
.item-1 {
    background: #38c179; 
    border-color: #38c179;
}
.item-2 {
    background: #0b0c26;
    border-color: #0b0c26;
}
#target {
    height: 400px;
    width: 100%;
}
.fancy-bar-chart table{display:none}
.fancy-bar-chart {
    float: left;
    width: 100%;
}
.graph{width: 100%!important}
.bar > span {
    background: inherit;
    color: #fff;
    display: block !important;
    font-family: montserrat;
    font-size: 9px;
    height: 20px;
    left: 0;
    margin: 0;
    position: absolute;
    top: -10px;
    width: 100%;
    z-index: 1;
}
.bar > span:before{
    background: inherit;
    content: "";
    height:21px;
    left: 50%;
    position: absolute;
    top: -34%;
    width:21px;
    z-index: -1;
    -webkit-transform: translateX(-50%) rotate(45deg);
    -moz-transform: translateX(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) rotate(45deg);
    -o-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
}
.graph ul.x-axis {
    border-top: 2px dashed #67686a;
    bottom: 0;
    padding-top: 4px !important;
}
.x-axis li{position:relative}
.x-axis li:before {
    background: #67686a none repeat scroll 0 0;
    content: "";
    height: 10px;
    left: 50%;
    margin-left: -5px;
    position: absolute;
    top: -10px;
    width: 10px;
}