/*Таймер*/
.countbox:before {
    content: 'До конца акции осталось:';
    display: block;
    text-align: center;
    font-size: 20px;
    color:#333;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.countbox {
    height: 119px;
    width: 100%;
    padding-left: 0;
    margin: 0 auto 16px;
}
.countbox > div:last-child {
    margin: 0;    
}
.countbox > div:first-child {
    margin-left: 9px;    
}
.countbox > div {
    position: relative;
}
.countbox > div:after {
    content: ':';
    display: block;
    color:#333;
    font-size: 40px;
    font-weight: 700;
    position: absolute;
    top:14px;
    right: -20px;
}
.countbox > div:last-child:after {
    display: none;
}
.countbox .countbox-num {
    float: left;
    width: 80px;
    height: 60px;
    background: #e0d4cf;
    margin-right: 30px;
}
.countbox-hours, .countbox-mins, .countbox-secs {
    color: #333333;
    font-size: 40px;
    text-align: center;
    line-height: 60px;
    letter-spacing: .4px;
}
.countbox-hours-text, .countbox-mins-text, .countbox-secs-text {
    font-size: 14px;
    text-align: center;
    text-transform: lowercase;
}