
.tf-pie-chart .chart-bar {
    position: relative;
    width: 400px;
    height: 400px;
    max-width: 400px;
}

#chartjs-tooltip {
    z-index: 555;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#chartjs-tooltip table {
    margin: 0;
}

#chartjs-tooltip table td {
    border: unset;
}

#chartjs-tooltip table td span {
    border-width: 2px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins';
    padding: 5px 15px;
}

.tf-pie-chart .chart-bar .content-chart {
    position: absolute;
    left: 50%;
    top: 50%;
        transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
    width: 260px;
    height: 260px;
    border: 20px solid #FAF7EE;
    border-radius: 50%;
    background: #fff;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tf-pie-chart .chart-bar .content-chart .sub {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    padding: 0px 60px;
    margin-bottom: 9px;
}

.tf-pie-chart .chart-bar .content-chart h3 {
    font-weight: 700;
font-size: 30px;
line-height: 1.25em;
}

.tf-pie-chart .chart-bar .table-chart {
    position: absolute;
    top: 50%;
    right: -152px;
    transform: translateY(-50%);
}

.tf-pie-chart .chart-bar .table-chart ul {
    margin: 0;
}

.tf-pie-chart .chart-bar .table-chart li {
    list-style: none;
    margin-bottom: 19px;
}

.tf-pie-chart .chart-bar .table-chart li:last-child {
    margin-bottom: 0;
}

.tf-pie-chart .chart-bar .table-chart li .top {
    display: flex;
    align-items: center;
    margin-bottom: 1px;
}

.tf-pie-chart .chart-bar .table-chart li .top .color-chart {
    width: 15px;
height: 15px;
border-radius: 50%;
margin-right: 10px;
}

.tf-pie-chart .chart-bar .table-chart li .top .time {
    font-weight: 400;
font-size: 14px;
line-height: 21px;
color: #535656;
}
.tf-pie-chart .chart-bar .table-chart li .bot h4 {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #4F5955;
    padding-left: 24px;
    margin-bottom: 0;
}

/* piechart */

.tf-pie-chart .pie-circle .chart-percent  {
    position: relative;
    display: inline-block;
}

.tf-pie-chart .pie-circle {
    text-align: center;
}

.tf-pie-chart .pie-circle .pie-icon {
    position: absolute;
    top: 50%;
    left: 50%;
        transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
    font-size: 54px;
    height: 54px;
    width: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tf-pie-chart .pie-circle .pie-icon img {
    width: 100%;
    object-fit: cover;
}

.tf-pie-chart .pie-circle .pie-icon i {
    display: block;
}

.tf-pie-chart .pie-circle .tf-piechart-title {
    font-weight: 600;
font-size: 18px;
line-height: 27px;
color: var(--theme-primary-color);
margin-bottom: 12px;
}

.tf-pie-chart .pie-circle .tf-piechart-description {
    font-weight: 400;
font-size: 14px;
line-height: 24px;
}

.tf-pie-chart .pie-circle .pie-chart {
    margin-bottom: 13px;
}

@media (max-width: 767px) {
    .tf-pie-chart .chart-bar {
        width: 100%;
        height: 300px;
        max-width: 100%;
    }
    .tf-pie-chart .chart-bar .content-chart {
        width: 200px;
        height: 200px;
        border: 15px solid #FAF7EE;
    }
    .tf-pie-chart .chart-bar .content-chart .sub {
        padding: 0px;
    }
    .tf-pie-chart .chart-bar .content-chart h3 {
        font-size: 18px;
    }
    .tf-pie-chart .chart-bar .table-chart {
        position: unset;
        top: unset;
        right: unset;
        transform: unset;
        margin-top: 40px;
    }
    .tf-pie-chart .tf-pie-chart-inner {
        display: inline-block;
    }
}