@charset "utf-8";

#timer {
	position: relative;
    margin: 30px auto 0;
    width: 66px;
    height: 66px;
    background: linear-gradient(to right, #F2F2F2 50%, #AAA 0);
    border-radius: 50%;
}
#timer::before {
    content: "";
    display: block;
    margin-left: 50%;
    height: 100%;
    border-radius: 0 100% 100% 0 / 50%;
    background-color: #F2F2F2;
    transform-origin: left;
    -webkit-animation: spin 5s linear 2,color 10s step-end forwards;
    animation: spin 5s linear 2,color 10s step-end forwards;
}
@-webkit-keyframes spin { to { -webkit-transform: rotate(.5turn); } }
@keyframes         spin { to { transform: rotate(.5turn); } }

@-webkit-keyframes color { 50% { background: #AAA; } }
@keyframes         color { 50% { background: #AAA; } }

#time {
    display: block;
    position: absolute;
    top: 3px;
    left: 3px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: #FFF;
    border-radius: 50%;
}
#jumpTxt { margin: 10px 0 30px; text-align: center !important;}
#jumpTxt a { text-decoration: underline;}

@media (hover: hover) {
    #jumpTxt a:hover { text-decoration: none;}
}

.br { display: inline-block;}

@media only screen and (max-width: 640px){
#timer { width: 56px; height: 56px;}
#time { width: 50px; height: 50px; line-height: 50px;}
}