

.graph-canvas{
    width:100%;
    background:#fff;
    margin-top: 40px;
    margin-bottom: 40px;
    display: none;
}

.graph-canvas.active{
    width:1000%;
    overflow: scroll;
    display: block;
}
canvas{
    width:100%;
}

.graphWrap{
    margin-left: 5%;
    width: 90%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.graphWrap2{
    margin-left: -5%;
    width: 110%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.graphTap{
    width:32%;
    height:45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    overflow: hidden;
    box-sizing: border-box; /* border와 padding이 요소 크기 내에 포함됨 */
    cursor: pointer;
}


#risk_factor_table{
    position:relative;
    width:100%;
    height:70vw;
    max-height:350px;
    display: flex;  
    justify-content: left;
    flex-wrap: nowrap;
    margin-bottom: 40px;
}

.risk_factor_cell{
    width:100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse; /* 요소들을 세로로 쌓되, 아래에서부터 쌓이도록 설정 */
    border-left: 1px solid #fff;
}

.risk_factor_date{
    width:100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height:40px;
    font-size: 0.8em;
    letter-spacing: -1px;
}

.risk_factor_risk{
    width:100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #fff;
    text-align: center;
    font-size: 0.6em;
    letter-spacing: -1px;
    color:#fff
}
.risk_factor_risk img{
    width:100%;
}

