/*Таймер*/
.countbox:before {
    content: 'До конца акции осталось:';
    display: block;
    text-align: center;
    font-size: 14px;
    color:#fff;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.countbox {
    height: 100px;
    width: 100%;
    padding: 25px 0 1px;
    margin: 0 auto 60px;
    background: #1a1a1d;
}
.countbox > div:last-child {
    margin: 0;    
}
.countbox > div:first-child {
    margin-left: 83.5px;    
}
.countbox .countbox-num {
    float: left;
    width: 83px;
    height: 83px;
    background: #fff;
    margin-right: 32px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    border: 5px solid #1a1a1d;
    position: relative;
}
.countbox .countbox-num:not(:last-child):before{
    content: ':';
    color: #fff;
    font-weight: 700;
    font-size: 36px;
    line-height: 1em;
    position: absolute;
    top: 16px;
    right: -26px;
}
.countbox-hours, .countbox-mins, .countbox-secs {
    color: #1f1f21;
    font-size: 36px;
    text-align: center;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 3px;
    padding-top: 20px;
}
.countbox-hours-text, .countbox-mins-text, .countbox-secs-text {
    font-size: 12px;
    color:#1a1a1d;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}