.c-countdown-bar{
    background-color: #20b9ef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-wrap: wrap;
}
.c-countdown-bar__item{
    padding: 10px;
}
.c-countdown-bar__heading{
    display: block;
    font-size: 20px;
    font-weight: 100;
    margin: 5px 0;;
}
.c-countdown-bar__heading_accent{
    font-weight: 600;
    font-size: 18px;
}
.c-timer{
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 300ms;
}
.c-timer__item{
    text-align: center;
    margin: 0 4px;
}
.c-timer__value{
    background-color: #fff;
    color: #20b9ef;
    font-weight: 600;
    padding: 4px 10px;
    font-size: 17px;
    border-radius: 4px;
    display: block;
}
.c-timer__label{
    font-size: 12px;
}
.c-countdown-bar__btn{ display:flex; align-items:center; font-size:20px; font-weight:500; padding:10px 25px; max-height:40px; box-sizing:border-box; }
@media screen and (max-width: 555px){
    .c-countdown-bar{
        text-align: center;
    }
}