.contentblok.teller {
    padding: 6rem 0;
}


.contentblok.teller.has_bg.donkerpaars + .contentblok.has_bg.donkerpaars {
    padding-top: 0;
}


.teller_items {
    margin-top: 6rem;
    display: flex;
    flex-direction: column;
    row-gap: 3rem;
}
.teller_item {
    display: block;
    --stroke-color: #8781bd; 
    --bg-color: #50506a;
}
.teller_item:nth-of-type(2) {
    --stroke-color: #f15364; 
    --bg-color: #5f4a5d;
}
.teller_item:nth-of-type(3) {
    --stroke-color: #ff9955; 
    --bg-color: #60535a;
}
.teller_item:nth-of-type(4) {
    --stroke-color: #79cbc7; 
    --bg-color: #4e5b6b;
}
.teller_item_getal {
    position: relative;
}
.teller_item_getal svg {
    display: block;
    height: 220px;
    width: 220px;
    transform: rotate(-90deg);
    border-radius: 50%;
    margin: 0 auto;
}
.progress-bar__background {
    fill: none;
    stroke: var(--bg-color);
    stroke-width: 1;
}
.progress-bar__progress {
    fill: transparent;
    stroke: var(--stroke-color);
    stroke-dasharray: 100 100;
    stroke-dashoffset: 100;
    stroke-linecap: square;
    stroke-width: 1;
    transition: stroke-dashoffset 3s ease-in-out;
}
.teller_item_getal .getal_wrapper {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    font-size: 5rem;
    font-weight: 300;
    color: var(--stroke-color);
}
.teller_item_content {
    margin-top: 2.5rem;
    font-weight: 700;
    text-align: center;
}
h4.teller_item_titel {
    display: block;
    text-transform: uppercase;
    font-size: 2rem;
}
p.teller_item_subtitel {
    font-size: 2rem;
    font-weight: 700;
}

@media (min-width: 576px) {
}

@media (min-width: 768px) {
    .contentblok.teller {
        padding: 9rem 0;
    }
    .teller_items {
        margin-top: 6rem;
        flex-direction: row;
        row-gap: 3rem;
        flex-wrap: wrap;
    }
    .teller_item {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .contentblok.teller {
        padding: 12rem 0;
    }

    .teller_items {
        margin-top: 6rem;
        flex-wrap: wrap;
    }
    .teller_item {
        width: 25%;
    }
}

@media (min-width: 1200px) {
}

@media (min-width: 1400px) {
}

@media (min-width: 1920px) {
}

@media (min-width: 2560px) {
}