.ft-countdown {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.ft-countdown_item {
    position: relative;
    height: 100px;
    text-align: center;
    flex: 1 0 auto;
    align-self: center;
    color: #ffffff;
}

.ft-countdown_item .digit {
    font-size: 47px;
}

.ft-countdown_item .smalltext {
    font-size: 14px;
    text-transform: uppercase;
}

.ft-countdown_message {
    display: none;
    color: #fff;
    font-size: 30px;
}

.ft-countdown--finished .ft-countdown_item {
    display: none;
}

.ft-countdown--finished .ft-countdown_message {
    display: block;
}