.timer {
    display: flex;
    justify-content: space-between;
    gap: 70px;
    /* margin: 0; */
    /* 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: 400;
    font-size: 55px;
    width: 65px;
    text-align: center;
    line-height: 1;
}
.time-count__text {
    font-size: 13px;
    line-height: 1;
}

.count-round {
    position: absolute;
    bottom: -17px;
    left: -15px;
}


.pie {
    display: block;
    width: 100px;
    height: 100px;
    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);
    opacity: 0.5;
    stroke-width: 6;
}
.chart {
    fill: none;
    stroke: #000;
    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;
    }
}