.countdownHolder{
    color: #fff;
    background: #ff2a00;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 20px;
    padding: 0 5px;
    min-width: 210px;
}

.position{
    display: inline-block;
    height: 100%;
    overflow: hidden;
    position: relative;
    width: 11px;
    text-align: center;
}

.digit{
    position: absolute;
    width: 100%;
    text-align: center;
    color: #fff;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.countdown__string {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 28px;
    width: 40px;
    position: relative;
}
.countdown__string:after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 0;
    color: #ff2a00;
    font-size: 9px;
    right: 0;
    text-align: center;
}
.countDays:after {
    content: 'Дней';
}
.countHours:after {
    content: 'Часов';
}
.countMinutes:after {
    content: 'Минут';
}
.countSeconds:after {
    content: 'Секунд';
}
.digit.static{
}

/**
 * You can use these classes to hide parts
 * of the countdown that you don't need.
 */

.countDays{ /* display:none !important;*/ }
.countDiv0{ /* display:none !important;*/ }
.countHours{}
.countDiv1{}.digit
            .countMinutes{}
.countDiv2{}
.countSeconds{}


.countDiv{
    padding: 0 4px;
}

.countDiv:before {
    content: '/';
}


.countDiv:after{
    top:0.9em;
}