.countdown.show .running {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 5px;
}

.countdown.show .running timer {
    font-size: 1.6rem;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 1;
    color: black;
}

.countdown.show .running timer .days,
.countdown.show .running timer .hours,
.countdown.show .running timer .minutes,
.countdown.show .running timer .seconds {
    width: 20%;
    min-width: 40px;
    text-align: center;
    margin: 0 7px;
}

@media (max-width: 480px) {
    .countdown.show .running timer {
        font-size: 40px;
    }
    .countdown.show .running timer .days,
    .countdown.show .running timer .hours,
    .countdown.show .running timer .minutes,
    .countdown.show .running timer .seconds {
        width: 49px;
    }
}

.countdown.show .running .labels {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
}

.countdown.show .running .labels small {
    width: 20%;
    min-width: 58px;
    text-align: center;
    margin: 0px 2px;
}

@media (max-width: 480px) {
    .countdown.show .running .labels span {
        width: 69px;
    }
}

.countdown.show .running .text {
    font-size: 20px;
    margin-top: 12px;
    font-weight: 600;
}

.countdown.show .running button {
    border: none;
    background-color: black;
    color: white;
    border-radius: 25px;
    padding: 10px 20px;
    margin: 10px;
}

.countdown.show .running .break {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    height: 0;
}

.countdown.show .ended {
    display: none;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.countdown.show .ended .text {
    font-size: 20px;
}

.countdown.show .ended button {
    border: none;
    background-color: #5a0000;
    color: white;
    border-radius: 25px;
    padding: 10px 20px;
    margin: 10px;
}

.countdown.show .ended .break {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    height: 0;
}