
.report-sections {
    margin: 10px 0;
}

.report-sections .report {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-top: var(--border);
}

.report-sections .report .image {
    background-color: var(--color-accent-light);
    padding: 15px;
    border-radius: 50%;
}

.report-sections .report .image i {
    color: var(--color-accent);
    font-size: 20px;
}

.report-sections .report-card {
    width: 100%;
    height: 200px;
    border-radius: var(--border-radius);
    border: var(--border-3-primary-light);
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.report-sections .report-card.primary {
    width: 100%;
    height: 200px;
    background-color: var(--color-primary);
    border-radius: var(--border-radius);
}
.report-chart {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.report-chart-svg {
    width: 100%;
    height: 70px;
}
.report-line {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.avg-line {
    stroke: var(--color-white-3);
    stroke-width: 2;
}
.current-line {
    stroke: var(--color-accent);
    stroke-width: 2.5;
}
.report-sections .report-card .top{
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.report-walk-path {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4px 0 6px;
}
.walk-svg {
    width: 100%;
    height: 70px;
}
.walk-line {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.walk-line-bg {
    stroke: var(--color-white-3);
    stroke-width: 2;
    opacity: 0.5;
}
.walk-line-progress {
    stroke: var(--color-accent);
    stroke-width: 2.4;
    stroke-dasharray: 0;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 0.4s ease-out;
}
.walk-dot {
    fill: var(--color-accent);
    transition: cx 0.4s ease-out, cy 0.4s ease-out;
}
.walk-steps-text {
    margin: 2px 0 0;
    font-size: 0.75rem;
    opacity: 0.8;
}
.workout-list .workout{
    overflow: hidden;
    max-height: 150px;
    display: block;
    height: 150px;
    max-width: 100%;
    border-radius: var(--border-radius);
    background-color: var(--video-bg);
    z-index: 1;
}
.workout-list .workout .workout-title{
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 900;
    z-index: 2;
}
.workout-list .workout img{
    height: 150px;
    object-fit: cover;
    border-radius: var(--border-radius);
    opacity: .65;
}

.workout-line{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: var(--border-3-primary-light);
    border-radius: var(--border-radius);
    padding: 10px 20px;
}

.workout-line .workout-icon{
    background-color: var(--color-primary-light);
    padding: 15px;
    border-radius: 50%;
}