/*
|--------------------------------------------------------------------------
| COUNTDOWN
|--------------------------------------------------------------------------
*/
.callback,
.simple,
.offset {
    font-size: 20px;
    background: #38be60;
    padding: 0.5em 0.7em;
    color: #fff;
    margin-bottom: 50px;
    -webkit-transition: background 0.5s ease-out;
    transition: background 0.5s ease-out;
}
.offset {
    margin-bottom: 10px;
}
.callback{
    cursor: pointer;
}
.ended {
    background: #c0392b;
}
.styled{
    margin-bottom: 50px;
}
.styled div {
    display: inline-block;
    margin-left: 10px;
    font-size: 30px;
    font-weight: 100;
    line-height: 1;
    text-align: right;
}
/* IE7 inline-block hack */
*+html .styled div{
    display: inline;
    zoom: 1;
}
.styled div:first-child {
    margin-left: 0;
}
.styled div span {
    display: block;
    border-top: 1px solid #cecece;
    padding-top: 3px;
    font-size: 10px;
    font-weight: normal;
    text-transform: uppercase;
    text-align: left;
}
.countdown {
    text-align: center;
}
.countdown span {
    font-size: 14px;
}
