
/*******************************************
** Circular Countdown
*******************************************/

.cbfc-circular-countdown-container {
    position: relative;
    .cbfc-circular-cbfc-clock-container {
        box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
    }
    .cbfc-clock-container {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .cbfc-circular-clock-item {
        //width: 23%;
        //float: left;
        -ms-flex: 0 0 23%;
        flex: 0 0 23%;
        max-width: 23%;
        display: inline-block;
        padding: 1%;
    }
}
.cbfc-circular-countdown-container-480 {
    .cbfc-circular-clock-item {
        margin-bottom: 40px;
    }
    .cbfc-circular-text {
        .cbfc-circular-val {
            font-size: 20px;
            line-height: 30px;
            margin-top: 10px;
        }
        .cbfc-circular-type-time {
            font-size: 15px;
            line-height: 20px;
            margin-top: 37px;
            text-transform: lowercase;
        }
    }
}
.cbfc-circular-clock-item {
    .cbfc-circular-inner {
        height: 0px;
        padding-bottom: 100%;
        position: relative;
        width: 100%;
    }
}
.cbfc-circular-clock-canvas {
    background-color: #9c9c9c;
    border-radius: 50%;
    height: 0px;
    padding-bottom: 100%;
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.08);
}
.cbfc-circular-text {
    color: #fff;
    margin-top: -25px;
    position: absolute;
    top: 50%;
    text-align: center;
    width: 100%;
    .cbfc-circular-val {
        margin-bottom: 0;
        font-size: 30px;
        line-height: 35px;
        font-weight: 700;
    }
    .cbfc-circular-type-time {
        font-size: 15px;
        line-height: 20px;
        margin-top: 10px;
    }
}

/*******************************************
** End Circular Countdown
*******************************************/