<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 10.06.2020, 11:50:53
    Author     : Armin
*/
.restart-countdown {
   background-color: #333333;
   padding-top: 10px;
   padding-bottom: 10px;
}


.restart-countdown .countdown-inner-container {
    width: 70%;
    margin: 0 auto;
    background-color: #333333;
    padding-top: 10px;
    padding-bottom: 10px;
}

.restart-countdown .countdown-inner-container p {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 0;
    font-weight: 700;
    text-transform: uppercase;
}
.restart-countdown .countdown-inner-container #countdown {
    font-weight: 400;
    text-transform: none;
    min-height: 35px;
}

@media only screen and (max-width : 767px) {
    .restart-countdown .countdown-inner-container p {
        font-size: 19px;
    }
    .restart-countdown .countdown-inner-container #countdown {
        min-height: 28px;
    }
}

@media only screen and (max-width : 480px) {
    .restart-countdown .countdown-inner-container {
        width: 90%;
    }
    .restart-countdown .countdown-inner-container p {
        font-size: 17px;
    }
}</pre></body></html>