.widget-countdown-content div{
    display: inline-block;
    color: #fff;
}
.widget-countdown-content span{
    display: block;
}
.countdown-title{
    color: #fff;
}

/* CIRCLE ANIMATION */
/****************************************************************
 *
 * CSS Percentage Circle
 * Author: Andre Firchow
 *
*****************************************************************/
.inline-block {
    display: -moz-inline-stack;
    display: inline-block;
}
.countdown.text-center{
    position: relative;
    z-index: 10;
}
.countdown {
    margin: 50px auto;
    text-align: center;
    color: #fff;
    padding: 20px;
    margin-top: 50px;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
}
.countdown .time-circle {
    display: -moz-inline-stack;
    display: inline-block;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    font-size: 54px;
    width: 120px;
    height: 120px;
    line-height: 120px;
    text-align: center;
    position: relative;
    background: #4ebdc0;
}
.countdown .time-circle:hover {
    background: #46babd;
    -webkit-transition: background 0.3s;
    -moz-transition: background 0.3s;
    -ms-transition: background 0.3s;
    -o-transition: background 0.3s;
}
.countdown .time-circle .time {
    display: -moz-inline-stack;
    display: inline-block;
    font-size: 54px;
}
.countdown .time-circle .time-name {
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    position: absolute;
    bottom: 10px;
    width: 100%;
    left: 0;
    line-height: 16px;
    color: #000;
    opacity: 0.2;
}
.countdown .time-circle .progress {
    width: 126px;
    height: 126px;
    position: absolute;
    left: -3px;
    top: -3px;
    z-index: -9;
    background-color: #f6f6f6;
    background-color: rgba(0, 0, 0, 0.1);
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
}
.countdown .time-circle .progress:after {
    content: '';
    width: 6px;
    height: 70px;
    background: #fff;
    position: absolute;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
}
.countdown .dots {
    display: -moz-inline-stack;
    display: inline-block;
    padding: 20px 5px;
    font-size: 54px;
    -webkit-animation: dots 1s infinite;
    -moz-animation: dots 1s infinite;
    -ms-animation: dots 1s infinite;
}
.text p{
    font-size: 14px;
    color: #9e9e9e;
    margin-top: 30px !important;
    margin-right: 30px !important;
}
@-moz-keyframes dots {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}
@-webkit-keyframes dots {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}
@keyframes dots {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@media only screen and (max-width: 991px){
    .text p{
        margin-top: 15px !important;
        margin-right: 0 !important;
    }
    .countdown-timer-wrapper{
        height: 100px;
        position: relative;
    }
    .countdown-timer-wrapper a{
        height: 100px;
        width: 100%;
        position: absolute;
        left: 0;
        z-index: 1000;
    }
    .countdown-timer-wrapper a .countdownwrap{
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    .countdown-timer-wrapper a .text{
        position: relative;
        top: 60%;
        left: 0;
    }

}
@media only screen and (max-width: 768px){
    .countdownwrap{
        top: 50%;
        transform: translate(-50%, -50%) !important;
    }
    canvas{
        width: 120px !important;
        height: 57px !important;
    }
    .text p{
        display: none;
    }
}
@media only screen and (max-width: 376px){
    .countdown-timer-wrapper a .text p{
        margin-right: 0 !important;
    }
}