.timer {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.time-count__item {
    width: 82px;
    display: flex;
    flex-flow: column;
    align-items: center;
    position: relative;
    gap: 10px;
    z-index: 1;
}
.time-count__val {
    width: 100%;
    height: 60px;
    font-size: 37px;
    line-height: 1;
    display: flex;
    background-color: rgba(255, 255, 255, .15);
}
.time-count__val span {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.time-count__val span:last-child {
    background-color: rgba(255, 255, 255, .15);
}
.time-count__text {
    font-weight: 600;
    font-size: 12px;
    line-height: 1;
}

@media screen and (max-width: 620px) {
    .timer {
        gap: 25px;
    }

    .time-count__item {
        width: 60px;
    }

    .time-count__val {
        font-size: 32px;
    }

    .time-count__text {
        font-size: 12px;
    }

    .pie {
        width: 75px;
        height: 75px;
        bottom: -11px;
        left: -7px;
    }

    .chart,
    .background {
        stroke-width: 8px;
    }
}