/**
 * jQuery Countdown
 *
 * Basic styles for a countdown timer. Feel free to write you own. These are
 * here really for demo purposes only.
 */

.countdown {
    height: 85px;
    width: 100%;
    margin: 0 auto;
    display: table;
    background: #fff!important;
}

.countdown>div {
    display: table-cell;
    margin: 0 10px!important;
    background: #fff!important;
}

.countdown>div>span {
    display: block;
    text-align: center;
    background: #fff!important;
}

span.count {
    font-size: 35px;
    color: #222;
    line-height: 35px;
    padding-top: 7px;
    background: #fff!important;
    font-weight: bold!important;
  
}

span.title {
    color: #555;
}