/*Таймер*/
.countbox {
    width: 100%;
    height: 123px;
    margin: 0 auto;
    border-radius: 4px;
    -webkit-border-radius: 4px;
}
.countbox:before {
    content: 'До конца акции осталось:';
    display: block;
    width: 100%;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: .5px;
    text-transform: uppercase;
    color:#fff;
    margin-bottom: 8px;
}
.countbox .countbox-num {
    float: left;
}
.countbox .countbox-space {
    float: left;
    height: 48px;
    width: 18px;
}
.countbox-hours1, .countbox-mins1, .countbox-secs1, .countbox-hours2, .countbox-mins2, .countbox-secs2 {
    float: left;
    margin-right: 8px;
    width: 54px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    z-index: 1;
    color: #943e43;
    background: #fff;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: .36px;
    border-radius:3px;
    -webkit-border-radius: 3px;
    margin-bottom: 3px;
    position: relative;
}
.countbox-hours2:after,
.countbox-mins2:after {
    content: ':';
    display: block;
    font-weight: 700;
    color:#fff;
    font-size: 36px;
    position: absolute;
    top:-5px;
    right: -17px;
}
.countbox-hours-text {
    padding-left: 40px;
}
.countbox-secs2 {
    margin-right: 0;
}
.countbox-hours1 {
    margin-left: 40px;
}
.countbox-hours-text, .countbox-mins-text, .countbox-secs-text {
    font-size: 18px;
    font-weight: 400;
    color:#fff;
    text-align: center;
    text-transform: lowercase;
}