
/* Kreisdiagramm */

.kreisdiagramm {
    width: 150px;
    height: 150px;
    position: relative;
    margin-bottom: 25px;
}

.kreisdiagramm .circle-inner {
    position: absolute;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border-radius: 50%;
    border: 20px solid #EBECF3;
    border: 20px solid var(--sand);
    font-size: 30px;
    box-sizing: border-box;
    z-index: 1;
}

.kreisdiagramm svg {
    position: relative;
    z-index: 2;
    transform: rotate(-90deg); /* Starts from the top (12 o'clock) */
    transform-origin: 50% 50%; /* Rotates around its center */
}

@media (max-width: 768px) {
    .kreisdiagramm {
        margin: 0 auto 25px auto;
    }
}
