.wrap {
    flex-wrap: wrap;
}

.flex {
    display: flex;
}


.flex-between {
    justify-content: space-between;
}

.flex-mid {
    align-items: center;
}

.countdown__chart {
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    line-height: 1;
    margin: 0px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.countdown__chart svg {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
}
.countdown__chart .countdown__time {
    display: inline-block;
    line-height: 1;
    margin: 0px;
    font-size: 28px;
    color: rgb(0, 0, 0);
    font-family: Roboto;
}
.countdown__chart .countdown__title {
    display: block;
    line-height: 1;
    margin: 0px;
    font-size: 12px;
    color: rgb(0, 0, 0);
    font-family: "Roboto Condensed";
}

.w-100-per {
    min-width: 205px;
    margin: 0px auto;
}