.timer {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.time-count__item {
    width: 50px;
    display: flex;
    flex-flow: column;
    align-items: center;
    position: relative;
    gap: 4px;
    z-index: 1;
}
.time-count__val {
    /* font-weight: 700; */
    font-size: 33px;
    line-height: 1;
}
.time-count__text {
    font-size: 12px;
    line-height: 1;
}
.pie {
    display: block;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    transform: rotate(-90deg);
    position: absolute;
    bottom: -10px;
    left: -12px;
    z-index: -1;
}
.background {
    fill: none;
    /* stroke: rgba(43, 48, 58, 0.21); */
    stroke: rgb(129, 129, 129);
    /* border: 3.47px solid rgb(129, 129, 129); */
    opacity: 0.5;
    stroke-width: 6;
}
.chart {
    fill: none;
    /* stroke: var(--accent); */
    stroke: white;
    stroke-width: 6;
}

@media screen and (max-width: 1220px) {
    .time-count__item {
        width: 44px;
    }
    .time-count__val {
        font-size: 25px;
    }
    .pie {
        width: 60px;
        height: 60px;
        bottom: -8px;
        left: -8px;
    }
}

@media screen and (max-width: 1000px) {
    .timer {
        width: 100%;
        max-width: 300px;
        margin: 0;
    }
}