.clock:before,
.count:after {
    content: '';
    position: absolute;
}

.clock-wrap {
    margin: auto;
    width: 120px;
    /* decreased from 240px */
    height: 120px;
    /* decreased from 240px */
    position: relative;
}

.clock {
    top: 50%;
    left: 50%;
    width: 90px;
    /* decreased from 180px */
    height: 90px;
    /* decreased from 180px */
    border-radius: 50%;
    position: absolute;
    margin-top: -45px;
    /* decreased from -90px */
    margin-left: -45px;
    /* decreased from -90px */
    background-color: #feeff4;
}

.clock:before {
    top: 50%;
    left: 50%;
    width: 60px;
    /* decreased from 120px */
    height: 60px;
    /* decreased from 120px */
    margin-top: -30px;
    /* decreased from -60px */
    margin-left: -30px;
    /* decreased from -60px */
    border-radius: inherit;
    background-color: #ec366b;
    box-shadow: 0 0 7.5px rgba(0, 0, 0, .15), 0 0 1.5px rgba(255, 255, 255, .75) inset;
    /* decreased shadow sizes */
    /*border:1px solid rgba(255,255,255,.1);*/
}

.count {
    width: 100%;
    color: #fff;
    height: 100%;
    padding: 25px;
    /* decreased from 50px */
    font-size: 16px;
    /* decreased from 32px */
    font-weight: 500;
    line-height: 25px;
    /* decreased from 50px */
    position: absolute;
    text-align: center;
}

.count:after {
    width: 100%;
    display: block;
    font-size: 14px;
    /* decreased from 18px */
    font-weight: 300;
    line-height: 9px;
    /* decreased from 18px */
    text-align: center;
    position: relative;
}

.count.sec:after {
    content: 'sec'
}

.count.min:after {
    content: 'min'
}