#analytics_chart{}

.chart_canvas{
    width: 100% !important;
    height: 600px !important;
}

.Tab-content__channeldata{
    margin-left:32px;
    margin-right:32px;
    margin-top:23px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

/*タブ切り替え全体のスタイル*/
.tabs {
    /* background-color: #1f1f1f; */
}

/*タブのスタイル*/
.tab_item {
    border-radius: 12px;
    width: calc(100%/4);
    background-color: #f9f9f9;
    line-height: 50px;
    font-size: 16px;
    text-align: center;
    color: #fff;
    display: block;
    float: left;
    text-align: center;
    font-weight: bold;
    padding:20px 0;
}
.tab_item_index{
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.011em;
    font-size: 12px;
    line-height: 16px;
    color: #606060;
    padding-top: 0;
    /* padding-bottom: 0; */
    padding-bottom: 5px;
    font-weight: 500;
    text-align: center;
    /* margin-top: 14px;    */
}
.tab_item_data{
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    font-size: 24px;
    letter-spacing: -0.012em;
    line-height: 32px;
    /* color: #fff; */
    color: #222222;
    padding-top: 0px;
    padding-bottom: 0px;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
    display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
    display: none;
    clear: both;
    /* height: 150px; */
    /* background: #f9f9f9; */
    text-align: center;
    padding:2rem 4rem;
}

/*選択されているタブのコンテンツのみを表示*/
#views:checked~#views_content,.views_content,
#subscribers:checked~#subscribers_content,
#playtimes:checked~#playtimes_content,
#comments:checked~#comments_content {
    display: block;
}
/*選択されているタブのスタイルを変える*/
.tabs input:checked+.tab_item {
    background-color: #ffffff;
    border-top: 3px solid #3ea6ff;
}