.graph_container {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
    padding-bottom: 20px;
    padding-top: 10px;
        }
.background_grid {
    position: absolute;
    width: 100%;
    height: 100%;
}
.background_grid .grid_line{
    position: relative;
    width: 100%;
    height: calc(135px / 5);
    border-top: 1px solid #aaa;
    z-index: 1;
}
.bar {
    border-radius: inherit;
    background-color: #6d8fc5;
    background-image: linear-gradient(90deg, rgba(255,255,255,0)0%,
                      rgba(255,255,255,0.35)50%, rgba(255,255,255,0)100%);
    position: absolute;
    transition: height 3s cubic-bezier(0.1, 0.42, 0.85, 1);
    width: 100%;
    height: 0;
    bottom: 0;
    text-align: center;
    color: #6d8fc5;
}       
.bar::after {
    content: attr(data-text);
    position: absolute;
    right: 0;
    left: 0;
    top: -1.5rem;
    width: 1rem;
    height: 1rem;
    background: transparent;
    font-size: 8px;
    line-height: 1rem;
    text-align: center;
    border-radius: 0.1rem;
    animation: text 5s ease-in-out;
    font-weight: bolder;
}
.bar1 {
    border-radius: inherit;
    background-color: #38618d;
    background-image: linear-gradient(90deg, rgba(255,255,255,0)0%,
                      rgba(255,255,255,0.35)50%, rgba(255,255,255,0)100%);
    position: absolute;
    transition: height 3s cubic-bezier(0.1, 0.42, 0.85, 1);
    width: 100%;
    height: 0;
    bottom: 0;
    text-align: center;
    color: white;
    margin-right: 5px;
}
.bar1::after {
    content: attr(data-text);
    position: absolute;
    right: 0;
    left: 0;
    top: -1.5rem;
    width: 1rem;
    height: 1rem;
    background: transparent;
    font-size: 8px;
    line-height: 1rem;
    text-align: center;
    border-radius: 0.1rem;
    animation: text 5s ease-in-out;
    font-weight: bolder;
}
.bar2 {
    border-radius: inherit;
    background-color: green;
    background-image: linear-gradient(90deg, rgba(255,255,255,0)90%,
                      rgba(255,255,255,0.35)50%, rgba(255,255,255,0)100%);
    position: absolute;
    transition: bottom 3s linear ;
    animation-delay: 5s;
    width: 50%;
    height: 0;
    border-radius: 50%;
    bottom: 10px;
    text-align: center;
    color: white;
}
.bar2::after {
    content: attr(data-text);
    position: relative;
    /*right: 3px;*/
     font-size: 8px;
     line-height: 1rem;
     color: green;
    text-align: center;
    border-radius: 0.1rem;
    animation: text 5s ease-in-out;
    font-weight: bolder;
    top: -1rem;
    /*left: 0;*/
    /*width: 1rem;*/
    /*height: 1rem;*/
    /*background: transparent;*/
}
    @keyframes text {
        0% {
            opacity: 1;
        }
        50% {
            opacity: 1;
        }
        100% {
            opacity: 1;
        }
}
.background_grid .grid_line::before{
   content: attr(value);
   position: absolute;
   left: -20px;
   transform: translateY(-50%);
   font-size: 12px;
   /*color: #6d8fc5;*/
}
.container{
    position: relative;
    width: 95%;
    height: 280px;
    margin-left: 20px;
    z-index: -1;
}
.cylinder_container{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 2%;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    z-index: 3;
}
.cylinder  {
    position: relative;
    margin-left:  0.5%;
    width: 2%;
    height: 100%;
    z-index: 4;
}
.cylinder1  {
    position: relative;
    margin-right:  3.5%;
    width: 2%;
    height: 100%;
}
.cylinder2{
     position: relative;
    /*margin-right:  0%;*/
    width: 2%;
    height: 100%;
}
#labels1{
    position: absolute;
    width: 100%;
    margin-left: 17px;
    bottom: -19px;
    display: grid;
    grid-template-columns: repeat(12,1fr);
}
.labels div{
   font-size: 12px;
   transform: rotate(360deg);
}

.margin_zero{
    margin: 0px;
}
.color_bar1{
    color: #38618d !important;
}
.color_bar2{
    color: green !important;
}
.color_coral{
    color: lightcoral !important;
}
.color_purple{
    color: #7B1FA2 !important;
}
.color_orange{
    color: orange !important;
}
.bg_light{
    background-color: #e8edf2;
}
.bg_light_pink{
    background-color: #FFEBEE;
}
.bg_light_purple{
    background-color: #F3E5F5;
}
.bg_light_orange{
    background-color: #FFF8E1 !important; 
}
.border_left_bar1{
    border-left:2px solid #6d8fc5 !important;  
}
.border_left_bar1_newgraph1{
     border-left:2px solid lightcoral !important;   
}
.border_left_bar1_newgraph2{
    border-left:2px solid #7B1FA2 !important;   
}
.border_left_bar1_newgraph3{
    border-left:2px solid orange !important;   
}
.border_top_bar1{
    border-top:2px solid #6d8fc5 !important;
}
.border_top_bar1_newgraph1{
    border-top:2px solid lightcoral !important; 
}
.border_top_bar1_newgraph2{
    border-top:2px solid #7B1FA2 !important; 
}
.border_top_bar1_newgraph3{
    border-top:2px solid orange !important; 
}
.bar_color_lightpink{
    background-color: lightpink;
}
.bar1_color_lightcoral{
    background-color: lightcoral;
}
.bar_color_lightpurple{
    background-color: #CE93D8;
}
.bar_color_lightorange{
     background-color: #ffe082 !important; 
}
.bar1_color_darkpurple{
    background-color: #9C27B0;
}
.bar_color_darkorange{
background-color:#ffa500 !important;
}
.font_weight_bolder{
    font-weight: bolder !important;
}
.margin_right_1_pr{
    margin-right: 10px !important;
}
.polyline{
    margin-top: -400px;
    /*position: absolute;*/
}
@media only screen and (min-width: 300px) {
  .labels div {transform: rotate(-30deg);}
  .line_polyline{width: 100%;}
  #labels1{margin-left: 0px;}
/*  #labels1 div{margin-left: -30px;}*/
  
  }
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .labels div {transform: rotate(-30deg);}
        /*.polyline{ width: 100%;}*/
   .line_polyline{width: 100%;}
   #labels1{margin-left: 0px;}

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .labels div {transform: rotate(-30deg);}
     /*.cylinder_container{width: 30%;}*/
.line_polyline{width: 100%;}
#labels1{margin-left: 0px;}
 } 

 /*Large devices (laptops/desktops, 992px and up)*/ 
@media only screen and (min-width: 992px) {
  .labels div {transform: rotate(360deg);}
/*.cylinder_container{width: 30%;}*/
.line_polyline{width: 100%;}
#labels1{margin-left: 12px;}
  } 
  /* Extra large devices (large laptops and desktops, 1200px and up) */
  @media only screen and (min-width: 1200px) {
     #labels1{ margin-left: 0px; }
    
  }
  /*<!--======================== datatable =============-->*/
#table_main, .table_main {
    border-collapse: collapse;
    width: 100%;
    transition: all 0.25s;
    -webkit-transition: all 0.25s;
    position: relative;
    overflow-x: auto;
    left: 0;
}
#resp-table {
    width:99.9%;
    display: table;
    font-size:10px;
    border-top:1px solid #38618d;
    border-left:1px solid #38618d;
}
#resp-table-body{
    display: table-row-group;
}
.resp-table-row_1{
    display: table-row;
    background-color:#97afd6;
    color:white;
    text-align:center;
}	
.resp-table-row_2{
    display: table-row;
    text-align:center;
}
.table-body-cell{
    display: table-cell;
    border-collapse:collapse;
    border-bottom:1px solid #38618d;
    border-right:1px solid #38618d;
    border-top:1px solid #38618d;
    border-left:1px solid #38618d;
    padding: 1px;
    line-height: 1.42857143;
    vertical-align: top;
}
.tr:hover {
    background-color:#e8edf2;
}
.cell{padding-top:20px;}
.cell1{padding-top:10px;}
.glacier_table_border_color{
    border-top:1px solid #f08080;
    border-left:1px solid #f08080;
    border-bottom:1px solid #f08080;
    border-right:1px solid #f08080;
}
.glacier_table_bg_color{
    background-color: #ffb8c3;
}
.glacier_table_tr_hover:hover{
    background-color:#ffebee;
}
.cube_table_border_color{
    border-top:1px solid #7b1fa2;
    border-left:1px solid #7b1fa2;
    border-bottom:1px solid #7b1fa2;
    border-right:1px solid #7b1fa2;
}
.cube_table_bg_color{
    background-color:#cf96d9;
}
.cube_table_tr_hover:hover{
    background-color:#f3e5f5;
}
.agile_table_border_color{
    border-top:1px solid #ffa500;
    border-left:1px solid #ffa500;
    border-bottom:1px solid #ffa500;
    border-right:1px solid #ffa500;
}
.agile_table_bg_color{
    background-color:#FFE082;
}
.agile_table_tr_hover:hover{
    background-color:#FFF8E1;
}
#btn_toogle span{
    background: #38618d;
}
/*<!--====================== END datatable =============--->*/

