*,:after,:before{
    box-sizing: border-box;
}
.pull-left{
    float: left;
}
.pull-right{
    float: right;
}
.clearfix:after,.clearfix:before{
    content: '';
    display: table;
}
.clearfix:after{
    clear: both;
    display: block;
}
.clock:before,.count:after{
    content: '';
    position: absolute;
}
.clock-wrap{
    margin: auto;
    width: 240px;
    height: 200px;
    /* margin-top: 100px; */
    position: relative;
    border-radius: 50px;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,.15);
}
.clock{
    top: 50%;
    left: 50%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    position: absolute;
    margin-top: -90px;
    margin-left: -90px;
    background-color: #feeff4;
}
.clock:before{
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    margin-top: -60px;
    margin-left: -60px;
    border-radius: inherit;
    background-color: #0d8097;
    box-shadow: 0 0 15px rgba(0,0,0,.15), 0 0 3px rgba(255,255,255,.75) inset;
}
.count{
    width: 100%;
    color: #fff;
    height: 100%;
    padding: 50px;
    font-size: 32px;
    font-weight: 500;
    line-height: 50px;
    position: absolute;
    text-align: center;
}
.count:after{
    width: 100%;
    display: block;
    font-size: 18px;
    padding: 50px;
    font-weight: 300;
    line-height: 18px;
    text-align: center;
    position: relative;
}
.count.days:after{
    content: 'days to go';
}
.count.hours:after{
    content: 'hours to go';
}
.count.mins:after{
    content: 'minutes to go';
}
.action{
    margin: auto;
    max-width: 200px;
}
.action .input{
    margin-top: 30px;
    position: relative;
}
.tbl{
    display: table;
    width: 100%;
}
.tbl .col{
    display: table-cell;
}