     .clock #timer {
        display: none;
    }
            .clock #timer .clock-wrapper span {
                font-size: 100px;
                font-weight: bold;
                transition: all .2s ease;
            }

                 .clock #timer .clock-wrapper span.red {
                    transition: all .2s ease;
                    color: rgb(233, 19, 19);
                    font-size: 180px;
                }

                    .clock #timer .clock-wrapper span.red.hours,
                    .clock #timer .clock-wrapper span.red.minutes,
                    .clock #timer .clock-wrapper span.red.seconds,
                    .clock #timer .clock-wrapper span.red.dots {
                        width: 0;
                        opacity: 0;
                        transition: all .3s ease;
                    }

                 .clock #timer .clock-wrapper span.dots {
                    margin-top: -5px;
                }


@media only screen and (max-width: 768px) {
     .clock {
        padding: 25px 0;
    }

         .clock #timer {
            display: none;
            padding: 25px 0;
        }

             .clock #timer .clock-wrapper span {
                font-size: 60px;
            }

                 .clock #timer .clock-wrapper span.dots {
                    margin-top: -3px;
                }

                 .clock #timer .clock-wrapper span.red {
                    font-size: 120px;
                }
}
