canvas {
    width: 330px !important;
    height: 330px !important;
}

#chart-container {
    gap: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

.char-item {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.char-item .chart-legend-color {
    width: 16px;
    height: 16px;
}

.char-item .chart-legend-label {
    letter-spacing: -2%;
    line-height: 17px;
    font-weight: 400;
    font-size: 14px;
    font-family: 'Inter';
    color: var(--color-neutral-dark);
    min-width: 172px;
}

.content--activity_container-content {
    position: relative;
}

.content--activity_container-content .legend-inner-chart {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    width: 50%;
    top: 90px;
    max-width: 230px;
}

.content--activity_container-content .legend-inner-chart .legend-inner-chart-title {
    font-weight: 400;
    font-family: 'Bebas Neue';
    line-height: 34px;
    text-align: center;
    color: var(--color-happygrass-green);
    font-size: 32px;
}

.content--activity_container-content .legend-inner-chart .legend-inner-chart-action {
    font-family: 'Inter';
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 0px;
    text-align: center;
    color: var(--color-neutral-dark);
}

.chart-container {
    position: relative;
}

.item-tooltip {
    background: #162B23;
    color: white;
    border-width: 2px;
    display: flex;
    width: 100%;
    height: 50px;
    padding: 16px;
    border-radius: 16px;
    gap: 4px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}

.item-tooltip img {
    width: 24px;
    height: 24px;
}

.item-tooltip::before {
    content: '';
    width: 16px;
    height: 16px;
    background: var(--color-neutral-dark);
    transform: rotate(-45deg);
    left: -8px;
    position: absolute;
    top: 17px;
}

#chartjs-tooltip {
    width: max-content;
}

#chartjs-tooltip-responsive {
    display: none;
}

.item-tooltip .number-tooltip {
    color: var(--color-grass);
    font-size: 32px;
    letter-spacing: -2%;
    line-height: 38.4px;
    font-weight: 400;
    font-family: 'Bebas Neue';
}

.item-tooltip .number-tooltip.down {
    color: rgb(234, 67, 67);
}

.item-tooltip .item-tooltip-content {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: space-between;
    line-height: 0;
}