.widgetContent {
    width: 95%;
    /* Control gap between two main widgets */
    transform: skewX(5deg);
    display: grid;
    grid-template-rows: 1fr auto;
    padding: 1.5em;
}

.progress {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 3%;
    height: 7vh;
    width: 100%;
    transform: skewX(-5deg);
}

.progress-item {
    width: 10px;
    background: transparent;
    border: 6px solid rgb(255, 255, 255);
    border-radius: 4px;
    display: flex;
    position: relative;
    --duration: 0s;
    --progress-color: #fff;
}


.progress-item::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    /* ^^^^^^^^ Wird gebraucht für  pseudo element 'after' */
    height: 0%;
    background: white;
    align-self: flex-end;
    /* Start at bottom */
    transform-origin: bottom;
    transition: height var(--duration) linear;
}

.progress-item.active::after,
.progress-item.completed::after {
    height: 100%;
    background-color: var(--progress-color);
}

.progress-item.active {
    transform: scale(1.1);
    transition: transform 0.2s ease-in;
    box-shadow: 0 2px 8px var(--progress-color)
}