

#del-countdown {
   /*float: right;*/
    width: 250px;
    color: #fff;
}
#clock span,#clock i{
    float: right;
    font-style: normal;
}
#clock span {

    text-align: center;
    font-size: 12px;
    font-weight: bold;
    margin: 0 2px;
    color: #000;
    background: #fff;
    /*padding: 0 5px;*/
    line-height: 25px;
    width: 23px;
    border-radius: 5px;
    box-sizing: border-box;
    position: relative;
}
#clock:after {
    content: "";
    display: block;
    clear: both;
}
#units span {
    float: left;
    width: 25%;
    text-align: center;
    margin-top: 5px;
    color: #D7DBDD;
    font-size: 13px;
    letter-spacing: 2px;
    text-shadow: 1px 1px 1px rgba(10, 10, 10, 0.7)
}

span.turn {
    /*animation: turn 0.5s ease forwards;*/
}

@keyframes turn {
    0% {
        transform: rotateY(0deg)
    }

    100% {
        transform: rotateY(360deg)
    }
}