/* common */
.after::after{
  display: block;
  content: " ";
  clear: both;
}

/* common */
.wrap_plus_gragh{
  background-color: #FFF;
  color: #3c4858;
  width: 388px;
  height: 130px;
  position: relative;
  font-size: 12px;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
  padding: 15px;
  border-radius: 4px;
}
.wrap_plus_gragh ul.section li p{
  display: inline-block;
  float: left;
  padding: 10px 10px 0 0;
  line-height: 1.1;
}
.wrap_plus_gragh ul.section li:first-child p{
  color: #56a3f2;
}
.wrap_plus_gragh ul.section li ul{
  display: inline-block;
  display: flex;
  width: 324px;
  float: left;
   justify-content: space-between; /* 항목들 사이에 간격을 균등하게 배치 */
}
.wrap_plus_gragh ul.section li ul li{
/*  width: 13px;*/
  height: 44px;
  float: left;
  line-height: 1;
  font-size: 10px;
  background-color: #e9e9e9;
  border-radius: 4px;
  margin: 2px;
  flex: 1 1 25%; /* 1은 flex-grow, 1은 flex-shrink, 25%는 flex-basis */
  text-align: center;
  position: relative;

}
.wrap_plus_gragh ul.section li ul li span{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.wrap_plus_gragh ul.section li ul li.on{
  background-color: #62cc67;
  position: relative;
}
.wrap_plus_gragh ul.section li ul li.on::after{
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  background-image: url(../img/icon_green.png); /* 이미지 URL */
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translate(-50% , 0);
}
.wrap_plus_gragh ul.section li p strong.t_blue{
  color: #56a3f2;
}
.wrap_plus_gragh ul.section li p strong.t_green{
  color: #03b865;
}
.wrap_plus_gragh ul.section li p strong.t_red{
  color: #f22222;
}
.wrap_plus_gragh ul.section li p i{
  color: #818181;
}

.graph_box_wrap{
  font-family: 'Noto Sans KR', sans-serif;
  letter-spacing: -0.5px;
  font-size: 12px;
}
.graph_box_wrap .graph_box{ 
  background-color: #FFF;
  color: #3c4858;
  width: 294px;
  height: 215px;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 5px 3px;
}
.graph_box_wrap .graph_box .container{
  width: 288px;
  height: 204px;
  background-color: #f8f8f8;
}
.graph_box_wrap p{
  color: #8492a6;
  font-size: 12px;
}
.graph_box_wrap p img{
  vertical-align: baseline;
}
