/*倒數計時*/
#count-down-timer-div{
	text-align: center;
	color: #FFF;
	padding: 10px;
	font-size: 1.6rem;
	width: 100%;
}
#count-down-timer-div img.tool_title{
	display: block;
	padding: 0 10px;
	margin: 10px auto;
	width: 100%;
	height: auto;
}
#count-down-timer-div p{
	font-size: 1.6rem;
	font-weight: bold;
	margin: 5px 0;
}
#count-down-timer-div input[type='button']{
	-webkit-appearance: none; /*for safari*/
	padding: 5px;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	outline: none;
	color: #fff;
	border: none;
	border-radius: 5px;
	box-shadow: 0 9px #999;
	margin: 10px 0;
	font-size: 1.6rem;
	font-weight: bold;
	width: 40%;
	max-width: 200px;
}

#count-down-timer-div input[type='button']:active{
  background-color: #3e8e41;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}

/*開始計時按鈕*/
#count-down-timer-div #btn-start[value=開始],
#count-down-timer-div #btn-start[value=繼續]{
	background-color: #00B0FF;
}
#count-down-timer-div #btn-start[value=開始]:hover,
#count-down-timer-div #btn-start[value=繼續]:hover{
	background-color: #0091EA;
}
#count-down-timer-div #btn-start[value=繼續]{
	animation: blinker 2s linear infinite;
}
@keyframes blinker {
  50% {
    background-color: #048799;
  }
}
/*開始計時按鈕-暫停狀態*/
#count-down-timer-div #btn-start[value=暫停]{
	background-color: #b3aaaa;
}
#count-down-timer-div #btn-start[value=暫停]:hover{
	background-color: #8c8686;
}

/*停止計時按鈕*/
#count-down-timer-div #btn-stop{
	background-color: #ef5350;
}
#count-down-timer-div #btn-stop:hover{
	background-color: #ac3b39;
}
#count-down-timer-div .input-btn{
	color: red;
	font-size: 1.6rem;
	width: 70px;
}
#count-down-timer{
	font-size: 3.6rem;
	margin: 10px 0;
}
img#count-down-timer-img{
	width: 100%;
	height: auto;
	min-width: 100px;
	min-height: 100px;
	max-width: 100px;
}