

/*實際收款圖表_collection_chart*/

.collection_chart{
    width: 100%;
}

.collection_chart .main_title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.collection_chart .title {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.collection_chart .sc-data_content {
    display: flex;
    align-items: center;
}

.collection_chart .sc-data_content .text_content {
    margin-left: 16px;
    font-size: 24px;
    font-weight: 500;
}

.collection_chart .sc-data_content .sc-datepicker{
    margin-bottom: 0;
}

/*圖表容器設定*/
.main_chart {
    width: 100%;
}

.main_chart .mychart_analysis {
    margin-top: 24px;
    border-radius: 15px;
    box-shadow: 0 3px 6px 0 rgba(0,0,0,.16);
    background: #fff;
    border: 4px solid #285ee4;
    padding: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}




/*日月營收圖表_operating_income_chart*/

.operating_income_chart {
    width: 100%;
}

.operating_income_chart .main_title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.operating_income_chart .title {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.operating_income_chart .sc-data_content {
    display: flex;
    align-items: center;
}

.operating_income_chart .sc-data_content .text_content {
    margin-left: 16px;
    font-size: 24px;
    font-weight: 500;
}

.operating_income_chart .sc-data_content form{
    margin-left: 16px;
    font-size: 24px;
    display: flex; 
    align-items: center; 
    /* margin-left: auto;
    margin-bottom: 20px; */
}

.operating_income_chart .sc-data_content .sc-datepicker {
    margin-bottom: 0;
}


/*勾選按鈕位置*/
.operating_income_chart .chk-gruop{
    display: flex;
    align-items: center;
}

/*勾選按鈕外觀*/
.operating_income_chart .chk-container {
    margin-bottom: 0;
    margin-left: 16px;
}

.operating_income_chart .chk-container input:checked ~ .outter .checkmark {
    background: #088080; }
    
.operating_income_chart .chk-container input:checked ~ .outter .checkmark:before {
    display: block;
    border-color: #fff; }

.operating_income_chart .chk-container input:checked ~ .outter .checkmark:after {
    display: block;
    border-color: #fff; }

.operating_income_chart .chk-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #658ae6;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.operating_income_chart .chk-container .outter {
    left: -7px;
    top: -7px;
    padding-top: 5px;
    padding-left: 5px;
    height: 33px;
    width: 330px;
    border-radius: 50%;
    position: absolute;
    width: 34px;
    height: 34px;
    transition: .3s;
}

.operating_income_chart .chk-container .outter .checkmark {
    top: 8px;
    left: 8px;
    border: 2px solid #285ee4;
    z-index: 2;
    background: 0 0;
}

.operating_income_chart .chk-container .outter:hover {
    background:#d2e0e4;
}

.operating_income_chart .chk-container .outter:active {
    background:#a7cdd0;
}


/*圖表容器設定*/
.main_chart {
    width: 100%;
}

.main_chart .mychart_analysis {
    margin-top: 24px;
    border-radius: 15px;
    box-shadow: 0 3px 6px 0 rgba(0,0,0,.16);
    background: #fff;
    border: 4px solid #285ee4;
    padding: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media screen and (max-width: 1280px) {
    .operating_income_chart .main_title {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 0px;
    }

    .operating_income_chart .chk-gruop{
        margin-top: 24px;
    }
}